support ->use_namespaces(0) in Loader.pm, fix tests for new dynamic schema behavior
[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;