Scope::Upper somehow confuses pseudofork on older perls - investigation pending
[dbsrgits/DBIx-Class.git] / t / row / find_one_has_many.t
CommitLineData
3170049a 1use strict;
2use warnings;
3
4use Test::More;
3170049a 5use lib qw(t/lib);
6use DBICTest;
7use DBIC::DebugObj;
8use DBIC::SqlMakerTest;
9
10my $schema = DBICTest->init_schema();
11
12$schema->resultset('Artist')->delete;
13$schema->resultset('CD')->delete;
14
15my $artist = $schema->resultset("Artist")->create({ artistid => 21, name => 'Michael Jackson', rank => 20 });
16my $cd = $artist->create_related('cds', { year => 1975, title => 'Compilation from 1975' });
17
18my ($sql, @bind);
19local $schema->storage->{debug} = 1;
20local $schema->storage->{debugobj} = DBIC::DebugObj->new(\$sql, \@bind);
21
22my $find_cd = $artist->find_related('cds',{title => 'Compilation from 1975'});
23
24s/^'//, s/'\z// for @bind; # why does DBIC::DebugObj not do this?
25
26is_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
34done_testing;