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