projects
/
dbsrgits/DBIx-Class-ParameterizedJoinHack.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
93b74da
)
skip when DBD::SQLite not available
Robert Sedlacek [Wed, 30 Sep 2015 04:01:30 +0000 (
04:01
+0000)]
t/00basic.t
patch
|
blob
|
blame
|
history
diff --git
a/t/00basic.t
b/t/00basic.t
index
348353e
..
8b0e9bc
100644
(file)
--- a/
t/00basic.t
+++ b/
t/00basic.t
@@
-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;