in reply to Selenium RC and Perl
It only prints what tests scripts and what specific tests failed.
I don't know what you mean. It prints what you tell it to print.
use strict; use warnings; use Test::More tests => 1; is(1, 2, "foo") or diag("bar");
a.t .. 1/1 # Failed test 'foo' # at a.t line 6. # got: '1' # expected: '2' # bar # Looks like you failed 1 test of 1. a.t .. Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests Test Summary Report ------------------- a.t (Wstat: 256 Tests: 1 Failed: 1) Failed test: 1 Non-zero exit status: 1 Files=1, Tests=1, 0 wallclock secs ( 0.02 usr 0.00 sys + 0.01 cusr + 0.00 csys = 0.03 CPU) Result: FAIL Failed 1/1 test programs. 1/1 subtests failed.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Selenium RC and Perl
by SelPerl (Initiate) on Apr 27, 2010 at 04:00 UTC | |
by ig (Vicar) on Apr 27, 2010 at 06:10 UTC | |
by ikegami (Patriarch) on Apr 27, 2010 at 04:22 UTC | |
by SelPerl (Initiate) on Apr 27, 2010 at 05:56 UTC | |
by Anonymous Monk on Apr 27, 2010 at 05:58 UTC |