Raw
1 #!/bin/sh
2 #
3 # Copyright (c) 2010 Ævar Arnfjörð Bjarmason
4 #
5
6 test_description='Perl gettext interface (Git::I18N)'
7
8 . ./lib-gettext.sh
9 . "$TEST_DIRECTORY"/lib-perl.sh
10 skip_all_if_no_Test_More
11
12 test_expect_success 'run t0202/test.pl to test Git::I18N.pm' '
13 "$PERL_PATH" "$TEST_DIRECTORY"/t0202/test.pl 2>stderr &&
14 test_must_be_empty stderr
15 '
16
17 test_done