skip when DBD::SQLite not available
Robert Sedlacek [Wed, 30 Sep 2015 04:01:30 +0000 (04:01 +0000)]
t/00basic.t

index 348353e..8b0e9bc 100644 (file)
@@ -5,6 +5,10 @@ use Test::More;
 use Test::Fatal;
 use My::Schema;
 
+unless (eval { require DBD::SQLite; 1 }) {
+    plan skip_all => 'Unable to load DBD::SQLite';
+}
+
 my $schema = My::Schema->connect('dbi:SQLite:dbname=:memory:');
 
 $schema->deploy;