1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

Merge pull request #14 from nanis/nanis-fix-t59-version-check

Fix version check against 3.7.11 so the test runs
This commit is contained in:
Kenichi Ishigaki 2015-11-24 14:36:13 +09:00
commit 7a6d13f68a

View file

@ -12,7 +12,7 @@ use DBD::SQLite;
BEGIN{
plan skip_all => 'this test is for Win32 only' unless $^O eq 'MSWin32';
plan skip_all => 'this test requires SQLite 3.7.12 and above' unless $DBD::SQLite::sqlite_version_number > 3071100;
plan skip_all => 'this test requires SQLite 3.7.12 and above' unless $DBD::SQLite::sqlite_version_number > 3007011;
}
use Test::NoWarnings;