more tests, a missing file, bug fix
[gitmo/MooseX-Object-Pluggable.git] / t / lib / CustomNS / Plugin / Foo.pm
1 package CustomNS::Plugin::Foo;
2
3 use strict;
4 use warnings;
5 use Moose::Role;
6
7 around foo => sub{ 'around foo CNS' };
8
9 1;