about summary refs log tree commit homepage
path: root/t/watch_filter_rubylang.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-05-22 02:13:59 +0000
committerEric Wong <e@80x24.org>2019-05-22 02:14:27 +0000
commit99566f264b4a13f5e9096411f1c87c4def153ab1 (patch)
tree413cc26d19105ee32156d4b710dc110c6d847197 /t/watch_filter_rubylang.t
parent22fca958a2a4d43d5ee4e006bfc046b72d76cae0 (diff)
downloadpublic-inbox-99566f264b4a13f5e9096411f1c87c4def153ab1.tar.gz
t/watch_filter_rubylang: disable v2 test for git < 2.6
This test was not disabled properly for ancient versions of
git without get-mark support.
Diffstat (limited to 't/watch_filter_rubylang.t')
-rw-r--r--t/watch_filter_rubylang.t14
1 files changed, 12 insertions, 2 deletions
diff --git a/t/watch_filter_rubylang.t b/t/watch_filter_rubylang.t
index 32565556..da383c15 100644
--- a/t/watch_filter_rubylang.t
+++ b/t/watch_filter_rubylang.t
@@ -2,6 +2,7 @@
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
+require './t/common.perl';
 use Test::More;
 use File::Temp qw/tempdir/;
 use PublicInbox::MIME;
@@ -12,13 +13,22 @@ foreach my $mod (@mods) {
         plan skip_all => "$mod missing for watch_filter_rubylang_v2.t" if $@;
 }
 
-use_ok 'PublicInbox::V2Writable';
 use_ok 'PublicInbox::WatchMaildir';
 use_ok 'PublicInbox::Emergency';
 my $tmpdir = tempdir('watch-XXXXXX', TMPDIR => 1, CLEANUP => 1);
 local $ENV{PI_CONFIG} = "$tmpdir/pi_config";
 
-for my $v (qw(V1 V2)) {
+my @v = qw(V1);
+SKIP: {
+        if (require_git(2.6, 1)) {
+                use_ok 'PublicInbox::V2Writable';
+                push @v, 'V2';
+        } else {
+                skip 'git 2.6+ needed for V2', 40;
+        }
+}
+
+for my $v (@v) {
         my @warn;
         $SIG{__WARN__} = sub { push @warn, @_ };
         my $cfgpfx = "publicinbox.$v";