Move the rs preservation test to a more suitable place
Peter Rabbitson [Wed, 10 Jun 2009 09:22:05 +0000 (09:22 +0000)]
t/lib/DBICTest/Schema/Artist.pm
t/search/preserve_original_rs.t [moved from t/prefetch/pollute_already_joined.t with 100% similarity]

index b9794fe..be46d16 100644 (file)
@@ -54,9 +54,9 @@ __PACKAGE__->has_many(
 );
 
 __PACKAGE__->has_many(
-    artist_to_artwork => 'DBICTest::Schema::Artwork_to_Artist' => 'artist_id'
+    artwork_to_artist => 'DBICTest::Schema::Artwork_to_Artist' => 'artist_id'
 );
-__PACKAGE__->many_to_many('artworks', 'artist_to_artwork', 'artwork');
+__PACKAGE__->many_to_many('artworks', 'artwork_to_artist', 'artwork');
 
 
 sub sqlt_deploy_hook {