X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Frow%2Ffind_one_has_many.t;h=ea7767f730f1448284866a5788a1f9a2084f3bf0;hb=2cfc22ddff9cb35524031dfc9d429d294b5e3d6e;hp=5e1e953af11ab749746b27cecc83f132b13a6d6c;hpb=680e2ac9adda36197b8b880c25fa344376f5914e;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/row/find_one_has_many.t b/t/row/find_one_has_many.t index 5e1e953..ea7767f 100644 --- a/t/row/find_one_has_many.t +++ b/t/row/find_one_has_many.t @@ -4,8 +4,6 @@ use warnings; use Test::More; use lib qw(t/lib); use DBICTest; -use DBIC::DebugObj; -use DBIC::SqlMakerTest; my $schema = DBICTest->init_schema(); @@ -15,20 +13,20 @@ $schema->resultset('CD')->delete; my $artist = $schema->resultset("Artist")->create({ artistid => 21, name => 'Michael Jackson', rank => 20 }); my $cd = $artist->create_related('cds', { year => 1975, title => 'Compilation from 1975' }); -my ($sql, @bind); -local $schema->storage->{debug} = 1; -local $schema->storage->{debugobj} = DBIC::DebugObj->new(\$sql, \@bind); - -my $find_cd = $artist->find_related('cds',{title => 'Compilation from 1975'}); - -s/^'//, s/'\z// for @bind; # why does DBIC::DebugObj not do this? - -is_same_sql_bind ( - $sql, - \@bind, - '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', - [21, 'Compilation from 1975'], - 'find_related only uses foreign key condition once', -); +$schema->is_executed_sql_bind(sub { + my $find_cd = $artist->find_related('cds',{title => 'Compilation from 1975'}); +}, [ + [ + ' 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 + ', + [ { dbic_colname => "me.artist", sqlt_datatype => "integer" } + => 21 ], + [ { dbic_colname => "me.title", sqlt_datatype => "varchar", sqlt_size => 100 } + => "Compilation from 1975" ], + ] +], 'find_related only uses foreign key condition once' ); done_testing;