X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft9700-perl-git.sh;h=0f04ba094b31285ff16b656f3b1e8fa7c3473a71;hb=6d14414d21973580547ca1935b2692a43c0b0b5f;hp=b2fb9ece9c9745fc7ce3240c88ca206b2dac7359;hpb=b4780d725c673db26692e11c56539381d60ad17c;p=git.git diff --git a/t/t9700-perl-git.sh b/t/t9700-perl-git.sh index b2fb9ece9..b81d5dfc3 100755 --- a/t/t9700-perl-git.sh +++ b/t/t9700-perl-git.sh @@ -6,6 +6,11 @@ test_description='perl interface (Git.pm)' . ./test-lib.sh +perl -MTest::More -e 0 2>/dev/null || { + say_color skip "Perl Test::More unavailable, skipping test" + test_done +} + # set up test repository test_expect_success \ @@ -22,18 +27,18 @@ test_expect_success \ echo "changed file 1" > file1 && git commit -a -m "second commit" && - git-config --add color.test.slot1 green && - git-config --add test.string value && - git-config --add test.dupstring value1 && - git-config --add test.dupstring value2 && - git-config --add test.booltrue true && - git-config --add test.boolfalse no && - git-config --add test.boolother other && - git-config --add test.int 2k + git config --add color.test.slot1 green && + git config --add test.string value && + git config --add test.dupstring value1 && + git config --add test.dupstring value2 && + git config --add test.booltrue true && + git config --add test.boolfalse no && + git config --add test.boolother other && + git config --add test.int 2k ' test_external_without_stderr \ 'Perl API' \ - perl ../t9700/test.pl + perl "$TEST_DIRECTORY"/t9700/test.pl test_done