in reply to Re: Keeping SKIP Test Blocks Under Control
in thread Keeping SKIP Test Blocks Under Control
ok( $mech->is_html, "Returns HTML" ) or skip "Didn't return HTML", 3;
That makes me want to write Test::Skip that wraps ok(), is(), like() and so on to avoid having to duplicate the test name. It'd be:
ok_or_skip( $mech->is_html, 'Returns HTML', 3 );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Keeping SKIP Test Blocks Under Control
by adrianh (Chancellor) on Apr 12, 2004 at 18:44 UTC |