[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Redirecting TestRunner output from console to file

Vadim Dobrovolsky

5/6/2009 11:45:00 AM

Hi guys

I'm novice both in Ruby and test/unit, so keep it in mind.

I have the following question:
How can I redirect the Test Runner output from console to some file or
string variable?

E.g.
I run tests with the following arguments

io=File.new('results.txt', 'w')
tr=Test::Unit::UI::Console::TestRunner.new(Testcase,"VERBOSE",io)

So Test IO should write to io variable but indeed it doesn't contain any
test results.
Ruby global variable $stdout is also empty. So it seems strange for me.

If you know what's wrong with my code and assumptions or some other way
how to get test results please answear.

Thank you in advance.
--
Posted via http://www.ruby-....

1 Answer

Ryan Davis

5/6/2009 6:03:00 PM

0


On May 6, 2009, at 04:45 , Vadim Dobrovolsky wrote:

> Hi guys
>
> I'm novice both in Ruby and test/unit, so keep it in mind.
>
> I have the following question:
> How can I redirect the Test Runner output from console to some file or
> string variable?
>
> E.g.
> I run tests with the following arguments
>
> io=File.new('results.txt', 'w')
> tr=Test::Unit::UI::Console::TestRunner.new(Testcase,"VERBOSE",io)

Do the simplest thing that could possibly work:

% ruby -Ilib test/test_blah.rb > results.txt