demand Module::Install 0.75
[gitmo/MooseX-Object-Pluggable.git] / t / lib / TestApp / Plugin / Foo / ExtensionFor / Baz.pm
CommitLineData
421e9f8d 1package TestApp::Plugin::Foo::ExtensionFor::Baz;
2
3use strict;
4use warnings;
5use Moose::Role;
6
7around baz => sub{
8 my $super = shift;
9 my $self = shift;
10 "foo'd baz " . $super->($self);
11};
12
131;