Reduce amount of initial connects during non-SQLite test-RDBMS lock-grabs
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / ArtistSourceName.pm
index c4c8a8b..3e6a7e6 100644 (file)
@@ -1,8 +1,11 @@
 package # hide from PAUSE
     DBICTest::Schema::ArtistSourceName;
 
-use base 'DBICTest::Schema::Artist';
+use warnings;
+use strict;
 
+use base 'DBICTest::Schema::Artist';
+__PACKAGE__->table(__PACKAGE__->table);
 __PACKAGE__->source_name('SourceNameArtists');
 
 1;