Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / ResultSetManager / Foo.pm
CommitLineData
8273e845 1package # hide from PAUSE
b1fb2c94 2 DBICTest::ResultSetManager::Foo;
4a233f30 3
4use warnings;
5use strict;
6
d88ecca6 7use base 'DBIx::Class::Core';
762a7bb2 8
d88ecca6 9__PACKAGE__->load_components(qw/ ResultSetManager /);
762a7bb2 10__PACKAGE__->table('foo');
11
a39e84a3 12sub bar : ResultSet { 'good' }
0d79cdf1 13
c6d74d3e 141;