Update of /cvsroot/perlunit/src/Test-Unit/lib/Test/Unit
In directory usw-pr-cvs1:/tmp/cvs-serv25192/lib/Test/Unit
Modified Files:
TestSuite.pm
Log Message:
allow 'ALL' as a magic test name which matches all methods in this class, e.g.
package MyTest37;
use base qw(Test::Unit::TestCase);
...
sub filter {{
skip_thirty_seven => [ 'ALL' ],
slow => [ qw(test_I_am_slow test_I_am_slow_too) ],
}}
|