demand Module::Install 0.75
[gitmo/MooseX-Object-Pluggable.git] / t / lib / CustomNS / Plugin / Foo.pm
CommitLineData
0a369903 1package CustomNS::Plugin::Foo;
2
3use strict;
4use warnings;
5use Moose::Role;
6
7around foo => sub{ 'around foo CNS' };
8
91;