diff options
author | Eric Wong <e@80x24.org> | 2019-12-22 22:17:37 +0000 |
---|---|---|
committer | Eric Wong <e@80x24.org> | 2019-12-24 03:47:01 +0000 |
commit | a09f678d8254064af7ca6dcfb3c3f84b5ae37b51 (patch) | |
tree | c32233ae88dbaa3b914812a80f539054d7f086da /t/psgi_search.t | |
parent | f1259e56d75b8f06a40fb466bee51a399cc317c5 (diff) | |
download | public-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_search.t')
-rw-r--r-- | t/psgi_search.t | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/t/psgi_search.t b/t/psgi_search.t index d1050437..95749c66 100644 --- a/t/psgi_search.t +++ b/t/psgi_search.t @@ -12,11 +12,7 @@ use bytes (); # only for bytes::length use PublicInbox::TestCommon; my @mods = qw(DBD::SQLite Search::Xapian HTTP::Request::Common Plack::Test URI::Escape Plack::Builder); -foreach my $mod (@mods) { - eval "require $mod"; - plan skip_all => "$mod missing for psgi_search.t" if $@; -} - +require_mods(@mods); use_ok $_ foreach (@mods, qw(PublicInbox::SearchIdx)); my ($tmpdir, $for_destroy) = tmpdir(); |