Support identity columns in PostgreSQL v10
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / TestRole2.pm
1 package TestRole2;
2
3 use Moose::Role;
4
5 sub test_role2_method { 'test_role2_method works' }
6
7 1;