From 5072b34cb2621146c3f5bd57daf883f5f7790060 Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Fri, 8 Jan 2010 10:06:47 +0000 Subject: [PATCH] Removed the Perl version test. It's covered by the "use 5.006;" in DBD::SQLite itself --- t/01_compile.t | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/t/01_compile.t b/t/01_compile.t index f7fefca..739a46d 100644 --- a/t/01_compile.t +++ b/t/01_compile.t @@ -9,9 +9,7 @@ BEGIN { $^W = 1; } -use Test::More tests => 4; - -ok( $] >= 5.00503, 'Perl version is new enough' ); +use Test::More tests => 3; use_ok('DBI'); use_ok('DBD::SQLite');