use strict and warnings consistently in tests
[p5sagit/Class-C3-Componentised.git] / t / lib / MyModule / OwnComponent.pm
index 56cff2b..e9ca293 100644 (file)
@@ -1,7 +1,10 @@
 package # hide from pause
   MyModule::OwnComponent;
+use strict;
+use warnings;
 
-use Class::C3;
+use MRO::Compat;
+use mro 'c3';
 
 sub message {
   my $self = shift;