(trv) Don't set DBIC_TRACE_PROFILE on perl 5.8
[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;