more tests, a missing file, bug fix
[gitmo/MooseX-Object-Pluggable.git] / t / lib / CustomNS / Plugin / Foo / ExtensionFor / Baz.pm
diff --git a/t/lib/CustomNS/Plugin/Foo/ExtensionFor/Baz.pm b/t/lib/CustomNS/Plugin/Foo/ExtensionFor/Baz.pm
new file mode 100644 (file)
index 0000000..aa14429
--- /dev/null
@@ -0,0 +1,13 @@
+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;