about summary refs log tree commit homepage
path: root/t/psgi_mount.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-12-22 22:17:37 +0000
committerEric Wong <e@80x24.org>2019-12-24 03:47:01 +0000
commita09f678d8254064af7ca6dcfb3c3f84b5ae37b51 (patch)
treec32233ae88dbaa3b914812a80f539054d7f086da /t/psgi_mount.t
parentf1259e56d75b8f06a40fb466bee51a399cc317c5 (diff)
downloadpublic-inbox-a09f678d8254064af7ca6dcfb3c3f84b5ae37b51.tar.gz
This cuts down on lines of code in individual test cases and
fixes some misnamed error messages by using "$0" consistently.

This will also provide us with a method of swapping out
dependencies which provide equivalent functionality (e.g
"Xapian" SWIG can replace "Search::Xapian" XS bindings).
Diffstat (limited to 't/psgi_mount.t')
-rw-r--r--t/psgi_mount.t10
1 files changed, 2 insertions, 8 deletions
diff --git a/t/psgi_mount.t b/t/psgi_mount.t
index a2621a2a..751c13b7 100644
--- a/t/psgi_mount.t
+++ b/t/psgi_mount.t
@@ -10,10 +10,7 @@ my $maindir = "$tmpdir/main.git";
 my $addr = 'test-public@example.com';
 my $cfgpfx = "publicinbox.test";
 my @mods = qw(HTTP::Request::Common Plack::Test URI::Escape);
-foreach my $mod (@mods) {
-        eval "require $mod";
-        plan skip_all => "$mod missing for plack.t" if $@;
-}
+require_mods(@mods);
 use_ok $_ foreach @mods;
 use PublicInbox::Import;
 use PublicInbox::Git;
@@ -88,10 +85,7 @@ test_psgi($app, sub {
 });
 
 SKIP: {
-        my @mods = qw(DBI DBD::SQLite Search::Xapian IO::Uncompress::Gunzip);
-        foreach my $mod (@mods) {
-                eval "require $mod" or skip "$mod not available: $@", 3;
-        }
+        require_mods(qw(DBD::SQLite Search::Xapian IO::Uncompress::Gunzip), 3);
         my $ibx = $config->lookup_name('test');
         require_ok 'PublicInbox::SearchIdx';
         PublicInbox::SearchIdx->new($ibx, 1)->index_sync;