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