irc is bad for productivity
[gitmo/MooseX-Object-Pluggable.git] / t / lib / TestApp2 / Plugin / Foo.pm
1 package TestApp2::Plugin::Foo;
2
3 use strict;
4 use warnings;
5 use Moose::Role;
6
7 around foo => sub{ 'around foo 2' };
8
9 1;