1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-08 14:48:32 -04:00

foreign keys tests requires SQLite 3.6.19 and newer

This commit is contained in:
Kenichi Ishigaki 2010-06-10 06:38:22 +00:00
parent 6668829394
commit 36c370b904

View file

@ -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 >= 3006019) {
plan skip_all => "this test requires SQLite 3.6.19 and newer";
exit;
}
}
use Test::NoWarnings; use Test::NoWarnings;
plan tests => 17; plan tests => 17;