diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-08-28 21:19:25 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-28 21:19:25 -0700 |
commit | 67c116bb26b4ee31889e5ee15d6a9d3b7e972b7b (patch) | |
tree | 43530142d45ca4e9489abcb76862b2c523c19f4c /t | |
parent | Merge branch 'jc/maint-clone-alternates' (diff) | |
parent | support pager.* for external commands (diff) | |
download | tgif-67c116bb26b4ee31889e5ee15d6a9d3b7e972b7b.tar.xz |
Merge branch 'jk/pager-with-external-command'
* jk/pager-with-external-command:
support pager.* for external commands
Diffstat (limited to 't')
-rwxr-xr-x | t/t7006-pager.sh | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/t/t7006-pager.sh b/t/t7006-pager.sh index 458233693b..320e1d1dbe 100755 --- a/t/t7006-pager.sh +++ b/t/t7006-pager.sh @@ -450,4 +450,40 @@ test_expect_success TTY 'command-specific pager overridden by environment' ' test_cmp expect actual ' +test_expect_success 'setup external command' ' + cat >git-external <<-\EOF && + #!/bin/sh + git "$@" + EOF + chmod +x git-external +' + +test_expect_success TTY 'command-specific pager works for external commands' ' + sane_unset PAGER GIT_PAGER && + echo "foo:initial" >expect && + >actual && + test_config pager.external "sed s/^/foo:/ >actual" && + test_terminal git --exec-path="`pwd`" external log --format=%s -1 && + test_cmp expect actual +' + +test_expect_success TTY 'sub-commands of externals use their own pager' ' + sane_unset PAGER GIT_PAGER && + echo "foo:initial" >expect && + >actual && + test_config pager.log "sed s/^/foo:/ >actual" && + test_terminal git --exec-path=. external log --format=%s -1 && + test_cmp expect actual +' + +test_expect_success TTY 'external command pagers override sub-commands' ' + sane_unset PAGER GIT_PAGER && + >expect && + >actual && + test_config pager.external false && + test_config pager.log "sed s/^/log:/ >actual" && + test_terminal git --exec-path=. external log --format=%s -1 && + test_cmp expect actual +' + test_done |