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