added result_roles and result_roles_map options, fixed a bug with accessor collision...
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / TestRole.pm
1 package TestRole;
2
3 use Moose::Role;
4
5 sub test_role_method { 'test_role_method works' }
6
7 1;