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