Move Module::Pluggable tests up under main test directory.
[p5sagit/p5-mst-13.2.git] / t / Module_Pluggable / lib / MyTest / Plugin / Foo.pm
1 package MyTest::Plugin::Foo;
2
3
4 use strict;
5
6 sub new { return bless {}, $_[0]; }
7 sub frobnitz {}
8 1;
9
10