mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 06:08:38 -04:00
28 lines
357 B
Perl
28 lines
357 B
Perl
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
BEGIN {
|
|
$| = 1;
|
|
$^W = 1;
|
|
}
|
|
|
|
use t::lib::SQLiteTest;
|
|
use Test::More;
|
|
BEGIN {
|
|
eval {require APR::Table; 1};
|
|
if ($@) {
|
|
plan skip_all => 'requires APR::Table';
|
|
}
|
|
else {
|
|
plan tests => 2;
|
|
}
|
|
}
|
|
|
|
my $dbh = connect_ok(
|
|
AutoCommit => 1,
|
|
RaiseError => 1,
|
|
);
|
|
|
|
eval { $dbh->do('SELECT 1') };
|
|
ok !$@, "no errors";
|
|
diag $@ if $@;
|