in reply to Re^3: How do I use Test::Unit::Setup?
in thread How do I use Test::Unit::Setup?
Test::Unit::Setup is a decorator for suites, not test cases, so you'll need to do something like this:Thanks adrianh! This is just the bit I needed to make it come together in my head.
package My::TestCase; use base qw(Test::Unit::TestCase); use Test::Unit::TestSuite;
|
|---|