Lea Wiemann | b4780d7 | 2008-06-19 22:32:49 +0200 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2008 Lea Wiemann |
| 4 | # |
| 5 | |
| 6 | test_description='perl interface (Git.pm)' |
| 7 | . ./test-lib.sh |
| 8 | |
Jeff King | 1b19ccd | 2009-04-03 15:33:59 -0400 | [diff] [blame] | 9 | if ! test_have_prereq PERL; then |
Ævar Arnfjörð Bjarmason | fadb515 | 2010-06-24 17:44:48 +0000 | [diff] [blame] | 10 | skip_all='skipping perl interface tests, perl not available' |
Jeff King | 1b19ccd | 2009-04-03 15:33:59 -0400 | [diff] [blame] | 11 | test_done |
| 12 | fi |
| 13 | |
Jeff King | 94221d2 | 2013-10-28 21:23:03 -0400 | [diff] [blame] | 14 | perl -MTest::More -e 0 2>/dev/null || { |
Ævar Arnfjörð Bjarmason | fadb515 | 2010-06-24 17:44:48 +0000 | [diff] [blame] | 15 | skip_all="Perl Test::More unavailable, skipping test" |
Junio C Hamano | e46f9c8 | 2008-06-29 13:21:42 -0700 | [diff] [blame] | 16 | test_done |
| 17 | } |
| 18 | |
Lea Wiemann | b4780d7 | 2008-06-19 22:32:49 +0200 | [diff] [blame] | 19 | # set up test repository |
| 20 | |
| 21 | test_expect_success \ |
| 22 | 'set up test repository' \ |
| 23 | 'echo "test file 1" > file1 && |
| 24 | echo "test file 2" > file2 && |
| 25 | mkdir directory1 && |
| 26 | echo "in directory1" >> directory1/file && |
| 27 | mkdir directory2 && |
| 28 | echo "in directory2" >> directory2/file && |
| 29 | git add . && |
| 30 | git commit -m "first commit" && |
| 31 | |
Frank Lichtenheld | da159c7 | 2009-05-07 15:41:27 +0200 | [diff] [blame] | 32 | echo "new file in subdir 2" > directory2/file2 && |
| 33 | git add . && |
| 34 | git commit -m "commit in directory2" && |
| 35 | |
Lea Wiemann | b4780d7 | 2008-06-19 22:32:49 +0200 | [diff] [blame] | 36 | echo "changed file 1" > file1 && |
| 37 | git commit -a -m "second commit" && |
| 38 | |
Nanako Shiraishi | 1f77354 | 2008-09-10 06:25:26 +0900 | [diff] [blame] | 39 | git config --add color.test.slot1 green && |
| 40 | git config --add test.string value && |
| 41 | git config --add test.dupstring value1 && |
| 42 | git config --add test.dupstring value2 && |
| 43 | git config --add test.booltrue true && |
| 44 | git config --add test.boolfalse no && |
| 45 | git config --add test.boolother other && |
Jakub Narebski | cb9c9df | 2011-10-21 20:42:44 +0200 | [diff] [blame] | 46 | git config --add test.int 2k && |
| 47 | git config --add test.path "~/foo" && |
| 48 | git config --add test.pathexpanded "$HOME/foo" && |
| 49 | git config --add test.pathmulti foo && |
| 50 | git config --add test.pathmulti bar |
Lea Wiemann | b4780d7 | 2008-06-19 22:32:49 +0200 | [diff] [blame] | 51 | ' |
| 52 | |
Ævar Arnfjörð Bjarmason | d998bd4 | 2010-06-24 17:44:46 +0000 | [diff] [blame] | 53 | # The external test will outputs its own plan |
| 54 | test_external_has_tap=1 |
| 55 | |
Lea Wiemann | b4780d7 | 2008-06-19 22:32:49 +0200 | [diff] [blame] | 56 | test_external_without_stderr \ |
| 57 | 'Perl API' \ |
Jeff King | 94221d2 | 2013-10-28 21:23:03 -0400 | [diff] [blame] | 58 | perl "$TEST_DIRECTORY"/t9700/test.pl |
Lea Wiemann | b4780d7 | 2008-06-19 22:32:49 +0200 | [diff] [blame] | 59 | |
| 60 | test_done |