6ca8317507946bc2c7f98c4ad4f56240444b55e5
[p5sagit/p5-mst-13.2.git] / lib / Module / Pluggable / t / 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