On Thu Aug 18 04:41:47 2011, OPERA wrote:
Show quoted text> In the is_test_class documentation, the example says:
>
> return unless $class->SUPER:is_test_class( $file, $dir );
>
> Note that it's missing one ":", it should be:
>
> return unless $class->SUPER::is_test_class( $file, $dir );
This appears to have been fixed at some point. ack-ing version 0.46 of Test-Class, I get:
#####
[Test-Class-0.46] 15 $ ack 'SUPER.*?is_test_class' .
lib/Test/Class/Load.pm
164: return unless $class->SUPER::is_test_class( $file, $dir );
#####
I think this ticket may be closed.