demand Module::Install 0.75
[gitmo/MooseX-Object-Pluggable.git] / t / lib / CustomNS / Plugin / Foo / ExtensionFor / Bar.pm
CommitLineData
0a369903 1package CustomNS::Plugin::Foo::ExtensionFor::Bar;
2
3use strict;
4use warnings;
5use Moose::Role;
6
7around bar => sub {
8 my ($super, $self) = @_;
9 "foo'd bar CNS " . $super->($self);
10};
11
121;