Merge branch 'master' into topic/constructor_rewrite
[dbsrgits/DBIx-Class.git] / t / row / find_one_has_many.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use lib qw(t/lib);
6 use DBICTest;
7 use DBIC::DebugObj;
8 use DBIC::SqlMakerTest;
9
10 my $schema = DBICTest->init_schema();
11
12 $schema->resultset('Artist')->delete;
13 $schema->resultset('CD')->delete;
14
15 my $artist  = $schema->resultset("Artist")->create({ artistid => 21, name => 'Michael Jackson', rank => 20 });
16 my $cd = $artist->create_related('cds', { year => 1975, title => 'Compilation from 1975' });
17
18 my ($sql, @bind);
19 local $schema->storage->{debug} = 1;
20 local $schema->storage->{debugobj} = DBIC::DebugObj->new(\$sql, \@bind);
21
22 my $find_cd = $artist->find_related('cds',{title => 'Compilation from 1975'});
23
24 s/^'//, s/'\z// for @bind; # why does DBIC::DebugObj not do this?
25
26 is_same_sql_bind (
27   $sql,
28   \@bind,
29   'SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track FROM cd me WHERE ( ( me.artist = ? AND me.title = ? ) ) ORDER BY year ASC',
30   [21, 'Compilation from 1975'],
31   'find_related only uses foreign key condition once',
32 );
33
34 done_testing;