Trailing WS crusade - got to save them bits
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / ResultSetManager / Foo.pm
CommitLineData
8273e845 1package # hide from PAUSE
b1fb2c94 2 DBICTest::ResultSetManager::Foo;
d88ecca6 3use base 'DBIx::Class::Core';
762a7bb2 4
d88ecca6 5__PACKAGE__->load_components(qw/ ResultSetManager /);
762a7bb2 6__PACKAGE__->table('foo');
7
a39e84a3 8sub bar : ResultSet { 'good' }
0d79cdf1 9
c6d74d3e 101;