added more many_to_many tests and changed add_to_rel to accept linking table column...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / TwoKeys.pm
index 8483d0b..7bb1965 100755 (executable)
@@ -13,4 +13,14 @@ __PACKAGE__->set_primary_key(qw/artist cd/);
 __PACKAGE__->belongs_to( artist => 'DBICTest::Schema::Artist' );
 __PACKAGE__->belongs_to( cd => 'DBICTest::Schema::CD' );
 
+__PACKAGE__->has_many(
+  'fourkeys_to_twokeys', 'DBICTest::Schema::FourKeys_to_TwoKeys', {
+    'foreign.t_artist' => 'self.artist',
+    'foreign.t_cd' => 'self.cd',
+});
+
+__PACKAGE__->many_to_many(
+  'fourkeys', 'fourkeys_to_twokeys', 'fourkeys',
+);
+
 1;