2008-06-20 00:32:49 +04:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2008 Lea Wiemann
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='perl interface (Git.pm)'
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2009-04-03 23:33:59 +04:00
|
|
|
if ! test_have_prereq PERL; then
|
2010-06-24 21:44:48 +04:00
|
|
|
skip_all='skipping perl interface tests, perl not available'
|
2009-04-03 23:33:59 +04:00
|
|
|
test_done
|
|
|
|
fi
|
|
|
|
|
2013-10-29 05:23:03 +04:00
|
|
|
perl -MTest::More -e 0 2>/dev/null || {
|
2010-06-24 21:44:48 +04:00
|
|
|
skip_all="Perl Test::More unavailable, skipping test"
|
2008-06-30 00:21:42 +04:00
|
|
|
test_done
|
|
|
|
}
|
|
|
|
|
2008-06-20 00:32:49 +04:00
|
|
|
# set up test repository
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'set up test repository' \
|
|
|
|
'echo "test file 1" > file1 &&
|
|
|
|
echo "test file 2" > file2 &&
|
|
|
|
mkdir directory1 &&
|
|
|
|
echo "in directory1" >> directory1/file &&
|
|
|
|
mkdir directory2 &&
|
|
|
|
echo "in directory2" >> directory2/file &&
|
|
|
|
git add . &&
|
|
|
|
git commit -m "first commit" &&
|
|
|
|
|
2009-05-07 17:41:27 +04:00
|
|
|
echo "new file in subdir 2" > directory2/file2 &&
|
|
|
|
git add . &&
|
|
|
|
git commit -m "commit in directory2" &&
|
|
|
|
|
2008-06-20 00:32:49 +04:00
|
|
|
echo "changed file 1" > file1 &&
|
|
|
|
git commit -a -m "second commit" &&
|
|
|
|
|
2008-09-10 01:25:26 +04:00
|
|
|
git config --add color.test.slot1 green &&
|
|
|
|
git config --add test.string value &&
|
|
|
|
git config --add test.dupstring value1 &&
|
|
|
|
git config --add test.dupstring value2 &&
|
|
|
|
git config --add test.booltrue true &&
|
|
|
|
git config --add test.boolfalse no &&
|
|
|
|
git config --add test.boolother other &&
|
2011-10-21 22:42:44 +04:00
|
|
|
git config --add test.int 2k &&
|
|
|
|
git config --add test.path "~/foo" &&
|
|
|
|
git config --add test.pathexpanded "$HOME/foo" &&
|
|
|
|
git config --add test.pathmulti foo &&
|
|
|
|
git config --add test.pathmulti bar
|
2008-06-20 00:32:49 +04:00
|
|
|
'
|
|
|
|
|
2010-06-24 21:44:46 +04:00
|
|
|
# The external test will outputs its own plan
|
|
|
|
test_external_has_tap=1
|
|
|
|
|
2008-06-20 00:32:49 +04:00
|
|
|
test_external_without_stderr \
|
|
|
|
'Perl API' \
|
2013-10-29 05:23:03 +04:00
|
|
|
perl "$TEST_DIRECTORY"/t9700/test.pl
|
2008-06-20 00:32:49 +04:00
|
|
|
|
|
|
|
test_done
|