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