silence override warning
authorRobin Barker <rmbarker@cpan.org>
Tue, 10 Jul 2012 23:32:36 +0000 (00:32 +0100)
committerFather Chrysostomos <sprout@cpan.org>
Fri, 13 Jul 2012 16:56:49 +0000 (09:56 -0700)
The test is trying to test the behaviour being warned about,
so the code is right but the warning can be suppressed.

lib/Class/Struct.t

index 111c090..fb1eb0b 100644 (file)
@@ -38,7 +38,10 @@ use Class::Struct s => '$', a => '@', h => '%', c => 'aClass';
 package OverrideAccessor;
 use Class::Struct;
 
-struct( 'OverrideAccessor', { count => '$' } );
+{ 
+ no warnings qw(Class::Struct);
+ struct( 'OverrideAccessor', { count => '$' } );
+}
 
 sub count {
   my ($self,$count) = @_;