fixed up sqlt tests a bit and tried fixing 2 failing sqlt tests
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Extra / Foo.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Extra::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;