Test split to run against normal rels and helper rels (currently just has_one)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / TwoKeys.pm
index f7442c1..ea6fa92 100755 (executable)
@@ -5,13 +5,5 @@ use base 'DBIx::Class::Core';
 DBICTest::Schema::TwoKeys->table('twokeys');
 DBICTest::Schema::TwoKeys->add_columns(qw/artist cd/);
 DBICTest::Schema::TwoKeys->set_primary_key(qw/artist cd/);
-DBICTest::Schema::TwoKeys->add_relationship(
-    artist => 'DBICTest::Schema::Artist',
-    { 'foreign.artistid' => 'self.artist' }
-);
-DBICTest::Schema::TwoKeys->add_relationship(
-    cd => 'DBICTest::Schema::CD',
-    { 'foreign.cdid' => 'self.cd' }
-);
 
 1;