Data::Dumper is not used here at all
[dbsrgits/DBIx-Class-Journal.git] / t / 01test.t
index 33301a5..d47c639 100644 (file)
@@ -1,15 +1,14 @@
 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' )
+        ? ( skip_all => 'needs DBD::SQLite and SQL::Translator for testing' )
         : ( tests => 21 );
 }