feex the tests
[gitmo/MooseX-Object-Pluggable.git] / t / lib / TestApp2 / Plugin / Foo / ExtensionFor / Bar.pm
diff --git a/t/lib/TestApp2/Plugin/Foo/ExtensionFor/Bar.pm b/t/lib/TestApp2/Plugin/Foo/ExtensionFor/Bar.pm
deleted file mode 100644 (file)
index ad67d21..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-package TestApp2::Plugin::Foo::ExtensionFor::Bar;
-
-use strict;
-use warnings;
-use Moose::Role;
-
-around bar => sub {
-    my ($super, $self) = @_;
-    "foo'd bar 2 " . $super->($self);
-};
-
-1;