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-forum.com/.