about summary refs log tree commit homepage
path: root/t/imapd.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-01-30 22:50:07 +0000
committerEric Wong <e@80x24.org>2023-01-31 00:27:05 +0000
commit5dbb060037ce3e3a3ba0812baa90c80eeee762af (patch)
tree4c61aef7f5822ede45c8c352320ed8bc5b7492b8 /t/imapd.t
parent155ee9cdaffd6232ef3c774d1a9f61d708fc8d6e (diff)
downloadpublic-inbox-5dbb060037ce3e3a3ba0812baa90c80eeee762af.tar.gz
We'll rely on defined(wantarray) to implicitly skip subtests,
and memoize these to reduce syscalls, since tests should
be short-lived enough to not be affected by new installations or
removals of git/xapian-compact/curl/etc...
Diffstat (limited to 't/imapd.t')
-rw-r--r--t/imapd.t5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/imapd.t b/t/imapd.t
index cbd6c1b9..c7dc01a5 100644
--- a/t/imapd.t
+++ b/t/imapd.t
@@ -3,7 +3,7 @@
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 # end-to-end IMAP tests, see unit tests in t/imap.t, too
 use strict;
-use Test::More;
+use v5.10.1;
 use Time::HiRes ();
 use PublicInbox::TestCommon;
 use PublicInbox::Config;
@@ -438,8 +438,7 @@ ok($mic->logout, 'logged out');
 
 SKIP: {
         use_ok 'PublicInbox::InboxIdle';
-        require_git('1.8.5', 1) or
-                skip('git 1.8.5+ needed for --urlmatch', 4);
+        require_git '1.8.5', 4;
         my $old_env = { HOME => $ENV{HOME} };
         my $home = "$tmpdir/watch_home";
         mkdir $home or BAIL_OUT $!;