Move Module::Pluggable tests up under main test directory.
[p5sagit/p5-mst-13.2.git] / t / Module_Pluggable / lib / InnerTest / Plugin / Foo.pm
CommitLineData
3f7169a2 1package InnerTest::Plugin::Foo;
2use strict;
3
4our $FOO = 1;
5
6package InnerTest::Plugin::Bar;
7use strict;
8
9sub bar {}
10
11package InnerTest::Plugin::Quux;
12use strict;
13use base qw(InnerTest::Plugin::Bar);
14
15
16
171;