feex the tests
[gitmo/MooseX-Object-Pluggable.git] / t / lib / TestApp / Plugin / Bar.pm
1 package TestApp::Plugin::Bar;
2
3 use strict;
4 use warnings;
5 use Moose::Role;
6
7 around bar => sub{ 'override bar' };
8
9 1;