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/www_listing.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/www_listing.t')
-rw-r--r-- | t/www_listing.t | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/t/www_listing.t b/t/www_listing.t index 75698ee5..4fcb43ea 100644 --- a/t/www_listing.t +++ b/t/www_listing.t @@ -6,12 +6,8 @@ use warnings; use Test::More; use PublicInbox::Spawn qw(which); use PublicInbox::TestCommon; -my @mods = qw(URI::Escape Plack::Builder Digest::SHA - IO::Compress::Gzip IO::Uncompress::Gunzip HTTP::Tiny); -foreach my $mod (@mods) { - eval("require $mod") or plan skip_all => "$mod missing for $0"; -} - +require_mods(qw(URI::Escape Plack::Builder Digest::SHA + IO::Compress::Gzip IO::Uncompress::Gunzip HTTP::Tiny)); require PublicInbox::WwwListing; my $json = eval { PublicInbox::WwwListing::_json() }; plan skip_all => "JSON module missing: $@" if $@; |