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