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