sqlfairy is also needed for testing
Yuval Kogman [Fri, 1 Aug 2008 00:37:35 +0000 (00:37 +0000)]
t/01test.t
t/02noautodeploy.t

index 33301a5..228ccbe 100644 (file)
@@ -7,9 +7,9 @@ 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' )
+        ? ( skip_all => 'needs DBD::SQLite and SQL::Translator for testing' )
         : ( tests => 21 );
 }
 
index b8f0328..80c0965 100644 (file)
@@ -7,10 +7,10 @@ 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 => 21 );
 }
 
 my $schema = DBICTest->init_schema(no_populate => 1, no_deploy => 1);