Test split to run against normal rels and helper rels (currently just has_one)
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema / Track.pm
index 97cb6f4..2e6fa7f 100644 (file)
@@ -5,9 +5,5 @@ use base 'DBIx::Class::Core';
 DBICTest::Schema::Track->table('track');
 DBICTest::Schema::Track->add_columns(qw/trackid cd position title/);
 DBICTest::Schema::Track->set_primary_key('trackid');
-DBICTest::Schema::Track->add_relationship(
-    cd => 'DBICTest::Schema::CD',
-    { 'foreign.cdid' => 'self.cd' }
-);
 
 1;