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

CANTOPEN_ISDIR is only valid on Win32

This commit is contained in:
Kenichi Ishigaki 2015-03-20 12:34:31 +09:00
parent b1975f1e97
commit 68d2877490

View file

@ -8,6 +8,11 @@ BEGIN {
use t::lib::Test qw/connect_ok/;
use Test::More;
BEGIN{
plan skip_all => 'this test is for Win32 only' unless $^O eq 'MSWin32';
}
use Test::NoWarnings;
use DBD::SQLite::Constants qw/:extended_result_codes :result_codes/;
use File::Temp;