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