mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 22:28:47 -04:00
fts tests requires SQLite 3.6.6 and newer
This commit is contained in:
parent
f12b89c091
commit
de36cae5e2
1 changed files with 9 additions and 0 deletions
|
@ -8,6 +8,15 @@ BEGIN {
|
||||||
|
|
||||||
use t::lib::Test;
|
use t::lib::Test;
|
||||||
use Test::More;
|
use Test::More;
|
||||||
|
|
||||||
|
BEGIN {
|
||||||
|
use DBD::SQLite;
|
||||||
|
unless ($DBD::SQLite::sqlite_version_number && $DBD::SQLite::sqlite_version_number >= 3006006) {
|
||||||
|
plan skip_all => "this test requires SQLite 3.6.6 and newer";
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
use Test::NoWarnings;
|
use Test::NoWarnings;
|
||||||
|
|
||||||
plan tests => 6;
|
plan tests => 6;
|
||||||
|
|
Loading…
Add table
Reference in a new issue