The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use lib 'lib';
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;