Git fork
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. "$TEST_DIRECTORY"/lib-perl.sh
10skip_all_if_no_Test_More
11
12test_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
17test_done