Renamed DBIx::Class::PK's retrieve() as find()
[dbsrgits/DBIx-Class.git] / t / 05multipk.t
CommitLineData
6eec7501 1use Test::More;
2
3plan tests => 3;
4
5use lib qw(t/lib);
6
7use_ok('DBICTest');
8
656796f2 9ok(DBICTest::FourKeys->find(1,2,3,4), "find multiple pks without hash");
10ok(DBICTest::FourKeys->find(5,4,3,6), "find multiple pks without hash");