first checkin of MooseX-Object-Pluggable
[gitmo/MooseX-Object-Pluggable.git] / t / lib / TestApp / Plugin / Bor.pm
1 package TestApp::Plugin::Bor;
2
3 use strict;
4 use warnings;
5 use Moose::Role;
6
7 around bor => sub{ 'plugin bor' };
8
9 1;