X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FCD.pm;h=1a0771b76ee22d8d9191a65e3765a4ebdb7e56f0;hb=139e7991dd0542b926ad9cac8de3711e4c716e13;hp=190f11d8539a0f2cffddeda44a1c1834fd8d07b8;hpb=2053211a210d15dbb7e354390b294955e9d591a2;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/CD.pm b/t/lib/DBICTest/Schema/CD.pm index 190f11d..1a0771b 100644 --- a/t/lib/DBICTest/Schema/CD.pm +++ b/t/lib/DBICTest/Schema/CD.pm @@ -55,6 +55,14 @@ __PACKAGE__->belongs_to( single_track => 'DBICTest::Schema::Track', { join_type => 'left'}, ); +__PACKAGE__->belongs_to( single_track_opaque => 'DBICTest::Schema::Track', + sub { + my $args = &check_customcond_args; + \ " $args->{foreign_alias}.trackid = $args->{self_alias}.single_track "; + }, + { join_type => 'left'}, +); + # add a non-left single relationship for the complex prefetch tests __PACKAGE__->belongs_to( existing_single_track => 'DBICTest::Schema::Track', { 'foreign.trackid' => 'self.single_track' },