Update of /cvsroot/perlunit/src/Test-Unit
In directory usw-pr-cvs1:/tmp/cvs-serv28338
Modified Files:
MANIFEST
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
|