http://qs321.pair.com?node_id=627251


in reply to Re: Test Technique: Self-removing test data
in thread Test Technique: Self-removing test data

Test::Class looked interesting to me, too, and I tried in 2005, but I got a bizarre error and gave up.

That issue has sense been resolved, and I'll consider giving it another shot. However, from looking at the source of Test::Class, it doesn't use the END {} block technique, even though it has a teardown() method, it is going to fail to clean up when the test script dies in the middle, which seems to be quite possible during development.

  • Comment on Re^2: Test Technique: Self-removing test data

Replies are listed 'Best First'.
Re^3: Test Technique: Self-removing test data
by Anonymous Monk on Jul 19, 2007 at 03:45 UTC

    Test::Class catches exceptions that happen in any of your test methods (including startup, shutdown, setup, and teardown methods) and registers the tests as failed.

    It's conceivable that you could die from outside of your test methods and that would prevent your cleanup from happening, but it would also probably mean that your setup didn't happen either.

    Test::Class is by no means perfect, but it deserves a little more credit than you give it.