more tests, a missing file, bug fix
[gitmo/MooseX-Object-Pluggable.git] / t / lib / CustomNS / Plugin / Foo / ExtensionFor / Bar.pm
diff --git a/t/lib/CustomNS/Plugin/Foo/ExtensionFor/Bar.pm b/t/lib/CustomNS/Plugin/Foo/ExtensionFor/Bar.pm
new file mode 100644 (file)
index 0000000..1c49561
--- /dev/null
@@ -0,0 +1,12 @@
+package CustomNS::Plugin::Foo::ExtensionFor::Bar;
+
+use strict;
+use warnings;
+use Moose::Role;
+
+around bar => sub {
+    my ($super, $self) = @_;
+    "foo'd bar CNS " . $super->($self);
+};
+
+1;