use
strict;
use
warnings;
use
Data::Dumper;
use
Test::More;
eval
"use DBD::SQLite 1.31"
;
if
($@) {
plan(
skip_all
=>
'DBD::SQLite not available'
);
exit
;
}
my
$mod
=
'Mail::DMARC::Report::View::HTTP'
;
use_ok(
$mod
);
my
$http
=
$mod
->new;
isa_ok(
$http
,
$mod
);
done_testing();
exit
;