]> git.ipfire.org Git - thirdparty/git.git/blob - t/t0202-gettext-perl.sh
The third batch
[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 . "$TEST_DIRECTORY"/lib-perl.sh
11 skip_all_if_no_Test_More
12
13 test_expect_success 'run t0202/test.pl to test Git::I18N.pm' '
14 "$PERL_PATH" "$TEST_DIRECTORY"/t0202/test.pl 2>stderr &&
15 test_must_be_empty stderr
16 '
17
18 test_done