On 1/24/07, Nik Clayton <[EMAIL PROTECTED]> wrote:
Has anyone ever used Test::More and Fatal together?

I have a test script, where each test builds upon the work of the previous
step (it's part of the Subversion Perl bindings test suite, and it checks
out files, makes changes to them, commits them, and so on).

If any of these tests fails I need to abort the whole .t file (but not
necessarily the entire test run, so BAIL_OUT isn't appropriate).

I thought something like:

   use Test::More;
   use Fatal qw(ok is isa_ok open print close ...);

You can't use Fatal on print().

Josh

Reply via email to