Move Module:Pluggable tests from t/Module_Pluggable to ext/Module_Pluggable/t
[p5sagit/p5-mst-13.2.git] / ext / Module-Pluggable / t / lib / MyTest / Extend / Plugin / Bar.pm
CommitLineData
3f7169a2 1package MyTest::Extend::Plugin::Bar;
2use strict;
3
4sub new {
5 my $class = shift;
6 my %self = @_;
7
8 return bless \%self, $class;
9}
10
11
12sub nork {
13 return $_[0]->{'nork'};
14}
151;
16
17