Skip to content

Commit

Permalink
t7610-mergetool: use test_config to isolate tests
Browse files Browse the repository at this point in the history
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
David Aguilar authored and Junio C Hamano committed Oct 16, 2014
1 parent 4756c05 commit d7d300e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions t/t7610-mergetool.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ test_expect_success 'custom mergetool' '
'

test_expect_success 'mergetool crlf' '
git config core.autocrlf true &&
test_config core.autocrlf true &&
git checkout -b test2 branch1 &&
test_must_fail git merge master >/dev/null 2>&1 &&
( yes "" | git mergetool file1 >/dev/null 2>&1 ) &&
Expand Down Expand Up @@ -505,14 +505,12 @@ test_expect_success 'file with no base' '

test_expect_success 'custom commands override built-ins' '
git checkout -b test14 branch1 &&
git config mergetool.defaults.cmd "cat \"\$REMOTE\" >\"\$MERGED\"" &&
git config mergetool.defaults.trustExitCode true &&
test_config mergetool.defaults.cmd "cat \"\$REMOTE\" >\"\$MERGED\"" &&
test_config mergetool.defaults.trustExitCode true &&
test_must_fail git merge master &&
git mergetool --no-prompt --tool defaults -- both &&
echo master both added >expected &&
test_cmp both expected &&
git config --unset mergetool.defaults.cmd &&
git config --unset mergetool.defaults.trustExitCode &&
git reset --hard master >/dev/null 2>&1
'

Expand Down

0 comments on commit d7d300e

Please sign in to comment.