summaryrefslogtreecommitdiff
path: root/cpan/Module-Pluggable/t/05postpath.t
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/Module-Pluggable/t/05postpath.t')
-rw-r--r--cpan/Module-Pluggable/t/05postpath.t31
1 files changed, 0 insertions, 31 deletions
diff --git a/cpan/Module-Pluggable/t/05postpath.t b/cpan/Module-Pluggable/t/05postpath.t
deleted file mode 100644
index 08c4052d26..0000000000
--- a/cpan/Module-Pluggable/t/05postpath.t
+++ /dev/null
@@ -1,31 +0,0 @@
-#!perl -w
-
-use strict;
-use FindBin;
-use lib (($FindBin::Bin."/lib")=~/^(.*)$/);
-use Test::More tests => 3;
-
-
-my $foo;
-ok($foo = MyTest->new());
-
-my @plugins;
-my @expected = qw(MyTest::Extend::Plugin::Bar);
-ok(@plugins = sort $foo->plugins);
-is_deeply(\@plugins, \@expected);
-
-
-
-package MyTest;
-use File::Spec::Functions qw(catdir);
-use strict;
-use Module::Pluggable (search_path => ["MyTest::Extend::Plugin"]);
-
-
-sub new {
- my $class = shift;
- return bless {}, $class;
-
-}
-1;
-