irc is bad for productivity
[gitmo/MooseX-Object-Pluggable.git] / t / lib / TestApp2 / Plugin / Foo.pm
diff --git a/t/lib/TestApp2/Plugin/Foo.pm b/t/lib/TestApp2/Plugin/Foo.pm
new file mode 100644 (file)
index 0000000..61b4c0a
--- /dev/null
@@ -0,0 +1,9 @@
+package TestApp2::Plugin::Foo;
+
+use strict;
+use warnings;
+use Moose::Role;
+
+around foo => sub{ 'around foo 2' };
+
+1;