Skip Menu |

This queue is for tickets about the Test-Class CPAN distribution.

Report information
The Basics
Id: 70334
Status: resolved
Priority: 0/
Queue: Test-Class

People
Owner: Nobody in particular
Requestors: OPERA [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: (no value)
Fixed in: 0.38



Subject: Tiny typo in documentation
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 );
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.
Fixed in: commit 6311c633c93327dc866ea7d8f2dbcf6881583a57 Author: Alexandr Ciornii <alexchorny@gmail.com> Date: Wed Nov 14 14:42:46 2012 +0200 typo (RT#70334)