skip views. because we use get_table to test. that's not gonna work.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Track.pm
index 64eb0ee..ffbd2fd 100644 (file)
@@ -35,4 +35,7 @@ __PACKAGE__->add_unique_constraint([ qw/cd title/ ]);
 __PACKAGE__->belongs_to( cd => 'DBICTest::Schema::CD' );
 __PACKAGE__->belongs_to( disc => 'DBICTest::Schema::CD' => 'cd');
 
+__PACKAGE__->might_have( cd_single => 'DBICTest::Schema::CD', 'single_track' );
+__PACKAGE__->might_have( lyrics => 'DBICTest::Schema::Lyrics', 'track_id' );
+
 1;