[Perlunit-commits] src/Test-Unit/lib/Test/Unit TestSuite.pm Test.pm
Status: Beta
Brought to you by:
mca1001
From: Adam S. <ada...@us...> - 2002-06-20 14:37:36
|
Update of /cvsroot/perlunit/src/Test-Unit/lib/Test/Unit In directory usw-pr-cvs1:/tmp/cvs-serv28338/lib/Test/Unit Modified Files: TestSuite.pm Test.pm Log Message: - remove ALL filtering hack, and instead allow filtering via coderefs: sub filter {{ foo_tests => sub { my $method = shift; return $method =~ /foo/; }, everything => sub { 1 }, # method lists still work another_token => [ qw/test_method1 test_method2/ ], }} - add tests for filtering mechanism |