about summary refs log tree commit homepage
path: root/t/msgmap.t
diff options
context:
space:
mode:
Diffstat (limited to 't/msgmap.t')
-rw-r--r--t/msgmap.t5
1 files changed, 5 insertions, 0 deletions
diff --git a/t/msgmap.t b/t/msgmap.t
index 9c7352ac..6a4f4f84 100644
--- a/t/msgmap.t
+++ b/t/msgmap.t
@@ -5,6 +5,11 @@ use warnings;
 use Test::More;
 use File::Temp qw/tempdir/;
 
+foreach my $mod (qw(DBD::SQLite)) {
+        eval "require $mod";
+        plan skip_all => "$mod missing for nntpd.t" if $@;
+}
+
 use_ok 'PublicInbox::Msgmap';
 my $tmpdir = tempdir(CLEANUP => 1);
 my $d = PublicInbox::Msgmap->new($tmpdir, 1);