Fixed prefetch bug and added a test for it (spotted by Purge)
[dbsrgits/DBIx-Class-Historic.git] / t / run / 05multipk.tl
CommitLineData
0567538f 1sub run_tests {
2
3plan tests => 2;
4
5ok(DBICTest::FourKeys->find(1,2,3,4), "find multiple pks without hash");
6ok(DBICTest::FourKeys->find(5,4,3,6), "find multiple pks without hash");
7
8}
9
101;