use strict and warnings consistently in tests
[p5sagit/Class-C3-Componentised.git] / t / lib / MyModule / Plugin / Foo.pm
1 package # hide from pause
2   MyModule::Plugin::Foo;
3 use strict;
4 use warnings;
5
6 use MRO::Compat;
7 use mro 'c3';
8
9 sub message {
10   "Foo";
11 }
12
13 1;