add ->ID method to PK.pm to generate unique object id (takes a hash of primary key...
[dbsrgits/DBIx-Class.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;