Test split to run against normal rels and helper rels (currently just has_one)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Tag.pm
index 4a3c4d2..a356d8f 100644 (file)
@@ -5,9 +5,5 @@ use base qw/DBIx::Class::Core/;
 DBICTest::Schema::Tag->table('tags');
 DBICTest::Schema::Tag->add_columns(qw/tagid cd tag/);
 DBICTest::Schema::Tag->set_primary_key('tagid');
-DBICTest::Schema::Tag->add_relationship(
-    cd => 'DBICTest::Schema::CD',
-    { 'foreign.cdid' => 'self.cd' }
-);
 
 1;