1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 06:08:38 -04:00
DBD-SQLite-SQLcipher/t/46_mod_perl.t
2019-01-06 09:03:41 +09:00

22 lines
317 B
Perl

use strict;
use warnings;
use lib "t/lib";
use SQLiteTest;
use Test::More;
BEGIN {
eval {require APR::Table; 1};
if ($@) {
plan skip_all => 'requires APR::Table';
}
}
my $dbh = connect_ok(
AutoCommit => 1,
RaiseError => 1,
);
eval { $dbh->do('SELECT 1') };
ok !$@, "no errors";
diag $@ if $@;
done_testing;