From: Peter Rabbitson Date: Tue, 23 Jun 2009 14:46:18 +0000 (+0000) Subject: Move tests around, add extra has_one relationship X-Git-Tag: v0.08108~67 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=987210ca0ba7dfa28edec967ffb98b872c15231d;hp=3988ce408f0bc7fb0caddebc179a7be0708d26d7;p=dbsrgits%2FDBIx-Class.git Move tests around, add extra has_one relationship --- diff --git a/t/lib/DBICTest/Schema/Track.pm b/t/lib/DBICTest/Schema/Track.pm index 4966800..70dc805 100644 --- a/t/lib/DBICTest/Schema/Track.pm +++ b/t/lib/DBICTest/Schema/Track.pm @@ -46,4 +46,6 @@ __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' ); +__PACKAGE__->has_one( undying_lyric => 'DBICTest::Schema::Lyrics', 'track_id' ); + 1; diff --git a/t/96multi_create_new.t b/t/multi_create/in_memory.t similarity index 100% rename from t/96multi_create_new.t rename to t/multi_create/in_memory.t diff --git a/t/96multi_create.t b/t/multi_create/standard.t similarity index 100% rename from t/96multi_create.t rename to t/multi_create/standard.t diff --git a/t/96multi_create_torture.t b/t/multi_create/torture.t similarity index 100% rename from t/96multi_create_torture.t rename to t/multi_create/torture.t