git rid of some unnecesary test warnings
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / lib / DBICTest / ResultSetManager / Foo.pm
CommitLineData
b974984a 1package # hide from PAUSE
2 DBICTest::ResultSetManager::Foo;
3use base 'DBIx::Class::Core';
4
5__PACKAGE__->load_components(qw/ ResultSetManager /);
6__PACKAGE__->table('foo');
7
8sub bar : ResultSet { 'good' }
9
101;