unless ($dsn && $user);
-plan tests => 41;
+plan tests => 42;
DBICTest::Schema->load_classes( 'Casecheck', 'ArrayTest' );
my $schema = DBICTest::Schema->connect($dsn, $user, $pass,);
# This is in Core now, but it's here just to test that it doesn't break
$schema->class('Artist')->load_components('PK::Auto');
+cmp_ok( $schema->resultset('Artist')->count, '==', 0, 'this should start with an empty artist table');
-{ #test that auto-pk also works with the defined search path by un-schema-qualifying
- #the table name
+{ # test that auto-pk also works with the defined search path by
+ # un-schema-qualifying the table name
my $artist_name_save = $schema->source("Artist")->name;
$schema->source("Artist")->name("artist");