X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Object-Pluggable.git;a=blobdiff_plain;f=t%2Flib%2FTestApp%2FPlugin%2FFoo%2FExtensionFor%2FBar.pm;fp=t%2Flib%2FTestApp%2FPlugin%2FFoo%2FExtensionFor%2FBar.pm;h=0000000000000000000000000000000000000000;hp=c5214417121f91542d696b7ae65e2d0cd32de889;hb=6ce00a8fcee743702a9c3f6aaae843ab9847ac3c;hpb=b085a25c183c1c7ab0c665bfffba5aa0f46d0b88 diff --git a/t/lib/TestApp/Plugin/Foo/ExtensionFor/Bar.pm b/t/lib/TestApp/Plugin/Foo/ExtensionFor/Bar.pm deleted file mode 100644 index c521441..0000000 --- a/t/lib/TestApp/Plugin/Foo/ExtensionFor/Bar.pm +++ /dev/null @@ -1,12 +0,0 @@ -package TestApp::Plugin::Foo::ExtensionFor::Bar; - -use strict; -use warnings; -use Moose::Role; - -around bar => sub { - my ($super, $self) = @_; - "foo'd bar " . $super->($self); -}; - -1;