mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
mod_perl test suggested by siracusa
This commit is contained in:
parent
2c33a2e1bc
commit
68db35b8b4
1 changed files with 28 additions and 0 deletions
28
t/46_mod_perl.t
Normal file
28
t/46_mod_perl.t
Normal file
|
@ -0,0 +1,28 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
BEGIN {
|
||||
$| = 1;
|
||||
$^W = 1;
|
||||
}
|
||||
|
||||
use t::lib::Test;
|
||||
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 $@;
|
Loading…
Add table
Reference in a new issue