Data::Dumper is not used here at all
[dbsrgits/DBIx-Class-Journal.git] / t / 02noautodeploy.t
index 8ceb5fd..6e70f31 100644 (file)
@@ -1,16 +1,15 @@
 use strict;
-use warnings;  
+use warnings;
 
 use Test::More;
 use lib qw(t/lib);
 use DBICTest;
-use Data::Dumper;
 
 BEGIN {
-    eval "use DBD::SQLite";
+    eval "use DBD::SQLite; use SQL::Translator";
     plan $@
-        ? ( skip_all => 'needs DBD::SQLite for testing' )
-        : ( 'no_plan' );
+        ? ( skip_all => 'needs DBD::SQLite and SQL::Translator for testing' )
+        : ( tests => 8 );
 }
 
 my $schema = DBICTest->init_schema(no_populate => 1, no_deploy => 1);
@@ -20,17 +19,17 @@ isa_ok($schema->_journal_schema, 'DBIx::Class::Schema::Journal::DB', 'Actually h
 isa_ok($schema->_journal_schema->source('CDAuditHistory'), 'DBIx::Class::ResultSource', 'CDAuditHistory source exists');
 isa_ok($schema->_journal_schema->source('ArtistAuditLog'), 'DBIx::Class::ResultSource', 'ArtistAuditLog source exists');
 
-my $count = eval { 
-    $schema->_journal_schema->resultset('ArtistAuditLog')->count;
+my $count = eval {
+    $schema->_journal_schema->resultset('ChangeLog')->count;
 };
 my $e = $@;
 
 is( $count, undef, "no count" );
-like( $e, qr/table.*artist_audit_log/i, "missing table error" );
+like( $e, qr/table.*changelog/, "missing table error" );
 
 $schema->journal_schema_deploy();
 
-$count = eval { $schema->_journal_schema->resultset('ArtistAuditLog')->count };
+$count = eval { $schema->_journal_schema->resultset('ChangeLog')->count };
 
 is( $@, '', "no error" );
 is( $count, 0, "count is 0" );