From f679a6caf73c5cbc3a189acd754b660e55662e45 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Sun, 4 Oct 2015 14:36:36 +0900 Subject: [PATCH] oops --- t/51_table_column_metadata.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/51_table_column_metadata.t b/t/51_table_column_metadata.t index 6b3ef5a..e7aaf4e 100644 --- a/t/51_table_column_metadata.t +++ b/t/51_table_column_metadata.t @@ -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;