Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / t / 65multipk.t
1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7
8 use DBICTest;
9
10 my $schema = DBICTest->init_schema();
11
12 plan tests => 5;
13
14 my $artist = $schema->resultset("Artist")->find(1);
15 ok($artist->find_related('twokeys', {cd => 1}), "find multiple pks using relationships + args");
16
17 ok($schema->resultset("FourKeys")->search({ foo => 1, bar => 2 })->find({ hello => 3, goodbye => 4 }), "search on partial key followed by a find");
18 ok($schema->resultset("FourKeys")->find(1,2,3,4), "find multiple pks without hash");
19 ok($schema->resultset("FourKeys")->find(5,4,3,6), "find multiple pks without hash");
20 is($schema->resultset("FourKeys")->find(1,2,3,4)->ID, 'DBICTest::FourKeys|fourkeys|bar=2|foo=1|goodbye=4|hello=3', 'unique object id ok for multiple pks');
21