Port remaining tests to the Opt::Dep reposiory
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Track.pm
index 0a6c346..12f7296 100644 (file)
@@ -54,11 +54,13 @@ __PACKAGE__->belongs_to(
     "year1999cd",
     "DBICTest::Schema::Year1999CDs",
     { "foreign.cdid" => "self.cd" },
+    { join_type => 'left' },  # the relationship is of course optional
 );
 __PACKAGE__->belongs_to(
     "year2000cd",
     "DBICTest::Schema::Year2000CDs",
     { "foreign.cdid" => "self.cd" },
+    { join_type => 'left' },
 );
 
 1;