Add author test for use strict/warnings
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / backcompat / 0.04006 / lib / DBIx / Class / TestComponent.pm
1 package DBIx::Class::TestComponent;
2 use strict;
3 use warnings;
4
5 sub dbix_class_testcomponent { 'dbix_class_testcomponent works' }
6
7 1;