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:
commit
7a6d13f68a
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue