fix subclassing gotcha introduced with source_name
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / ResultSetManager / Foo.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
b1fb2c94 2 DBICTest::ResultSetManager::Foo;
f0750722 3use base 'DBIx::Class';
762a7bb2 4
f0750722 5__PACKAGE__->load_components(qw/ ResultSetManager Core /);
762a7bb2 6__PACKAGE__->table('foo');
7
a39e84a3 8sub bar : ResultSet { 'good' }
0d79cdf1 9
c6d74d3e 101;