- or download this
# t/Data.pm
package t::Data;
...
);
1;
- or download this
# t/42_somefunctionality.t
use Test::More; # no plan here!
...
for my $case ( @t::Data::cases ) {
# 13 tests here for each case
}
- or download this
# t/DBM/Deep/Test.pm
package t::DBM::Deep::Test;
...
}
1;
- or download this
# t/DBM/Deep/Feature1.pm
use base 't::DBM::Deep::Test';
...
}
1;
- or download this
# runtests.t
...
# etc...
Test::Class->runtests();