skip tests unless DBD::SQLite installed
[blog.pm-common-perl-mods.git] / Rose-DBx-Object-I18N / t / zzcleanup.t
blobeac0c041e27be17dc9aebdf29089d5903213674d
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
6 use Test::More;
8 eval "use DBD::SQLite";
9 plan skip_all => "DBD::SQLite is required to run this test" if $@;
11 plan 'tests' => 1;
13 use lib 't/lib';
15 use NewDB;
17 my $db = NewDB->new();
19 $db->cleanup();
21 ok( ! -f $db->db->database );