in reply to Keeping SKIP Test Blocks Under Control
Let the dependant tests fail and fix them from the top down. Use skip when you can't test a particular bit of functionality.
SKIP: { skip 'Not on Linux', 1 unless $os_is_linux; ok( linux_specific_test(), $test_name ); };
Cheers,
Ovid
New address of my CGI Course.
|
|---|