- add docs to Serialize and ResultSetManager
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Extra / Foo.pm
CommitLineData
762a7bb2 1package DBICTest::Extra::Foo;
f0750722 2use base 'DBIx::Class';
762a7bb2 3
f0750722 4__PACKAGE__->load_components(qw/ ResultSetManager Core /);
762a7bb2 5__PACKAGE__->table('foo');
6
7sub bar : resultset { 'good' }