Merge branch 'ra/t5150-depends-on-perl'

Some Porcelain commands are written in Perl, and tests on them are
expected not to work when the platform lacks a working perl.

* ra/t5150-depends-on-perl:
  t5150: skip request-pull test if Perl is disabled
maint
Junio C Hamano 2019-12-25 11:21:58 -08:00
commit 6514ad40a1
1 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,12 @@ test_description='Test workflows involving pull request.'

. ./test-lib.sh

if ! test_have_prereq PERL
then
skip_all='skipping request-pull tests, perl not available'
test_done
fi

test_expect_success 'setup' '

git init --bare upstream.git &&