That's a fair question.  I'd like a bit more control over what output I actually save to file.  For instance, the web app under test has frames where some of them return the 'Access is Denied' warnings.  I'd like to weed out all that crap.. err, noise.. and just see the test summary.

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

Reply via email to