mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
backup tests require SQLite 3.6.11 and newer
This commit is contained in:
parent
36c370b904
commit
f12b89c091
1 changed files with 9 additions and 0 deletions
|
@ -5,6 +5,15 @@ use warnings;
|
|||
|
||||
use Test::More;
|
||||
use t::lib::Test qw/connect_ok @CALL_FUNCS/;
|
||||
|
||||
BEGIN {
|
||||
use DBD::SQLite;
|
||||
unless ($DBD::SQLite::sqlite_version_number && $DBD::SQLite::sqlite_version_number >= 3006011) {
|
||||
plan skip_all => "this test requires SQLite 3.6.11 and newer";
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
use Test::NoWarnings;
|
||||
use DBI;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue