1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00
This commit is contained in:
Kenichi Ishigaki 2015-10-04 14:36:36 +09:00
parent 3eb1a18420
commit f679a6caf7

View file

@ -6,6 +6,9 @@ BEGIN {
$^W = 1;
}
use DBD::SQLite;
use Test::More;
BEGIN {
if (!grep /^ENABLE_COLUMN_METADATA/, DBD::SQLite::compile_options()) {
plan skip_all => "Column metadata is disabled for this DBD::SQLite";
@ -13,7 +16,6 @@ BEGIN {
}
use t::lib::Test qw/connect_ok @CALL_FUNCS/;
use Test::More;
use Test::NoWarnings;
plan tests => 16 * @CALL_FUNCS + 1;