summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl/t/Module_Pluggable/04acmepath_single.t
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/perl/t/Module_Pluggable/04acmepath_single.t')
-rw-r--r--gnu/usr.bin/perl/t/Module_Pluggable/04acmepath_single.t30
1 files changed, 0 insertions, 30 deletions
diff --git a/gnu/usr.bin/perl/t/Module_Pluggable/04acmepath_single.t b/gnu/usr.bin/perl/t/Module_Pluggable/04acmepath_single.t
deleted file mode 100644
index bf02854c223..00000000000
--- a/gnu/usr.bin/perl/t/Module_Pluggable/04acmepath_single.t
+++ /dev/null
@@ -1,30 +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(Acme::MyTest::Plugin::Foo);
-ok(@plugins = sort $foo->plugins);
-is_deeply(\@plugins, \@expected);
-
-
-package MyTest;
-use File::Spec::Functions qw(catdir);
-use strict;
-use Module::Pluggable search_path => "Acme::MyTest::Plugin";
-
-
-sub new {
- my $class = shift;
- return bless {}, $class;
-
-}
-1;
-