The output request was actually a requirement from my boss. He asked to have an output that just summarises the tests run and doesn't output anything else unless something goes wrong. Since I can't prevent the 'Access is Denied' warnings from appearing in the console, I'd like to find a way to just redirect the Test Unit information to a file and ignore everything else.
P.
On 25/04/06, Daniel Browne <[EMAIL PROTECTED]> wrote:
What happens if you do:
ruby iostring_test.rb > some_file.log
Or to redirect STDOUT and SDTERR to the file try:
ruby iostring_test.rb > some_file.log 2>&1
Cheers,
Daniel.
_______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general
