]> git.ipfire.org Git - thirdparty/git.git/blob - t/t0202-gettext-perl.sh
clone: allow "--bare" with "-o"
[thirdparty/git.git] / t / t0202-gettext-perl.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2010 Ævar Arnfjörð Bjarmason
4 #
5
6 test_description='Perl gettext interface (Git::I18N)'
7
8 TEST_PASSES_SANITIZE_LEAK=true
9 . ./lib-gettext.sh
10
11 if ! test_have_prereq PERL; then
12 skip_all='skipping perl interface tests, perl not available'
13 test_done
14 fi
15
16 perl -MTest::More -e 0 2>/dev/null || {
17 skip_all="Perl Test::More unavailable, skipping test"
18 test_done
19 }
20
21 # The external test will outputs its own plan
22 test_external_has_tap=1
23
24 test_external_without_stderr \
25 'Perl Git::I18N API' \
26 perl "$TEST_DIRECTORY"/t0202/test.pl
27
28 test_done