Signed-off-by: Jonathan Nieder <jrnieder@xxxxxxxxx> --- t/t7006-pager.sh | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/t/t7006-pager.sh b/t/t7006-pager.sh index 944e830..237a689 100755 --- a/t/t7006-pager.sh +++ b/t/t7006-pager.sh @@ -71,6 +71,22 @@ test_expect_success TTY 'git --paginate rev-list uses a pager' ' test -e paginated.out ' +rm -f paginated.out +test_expect_success TTY 'git rev-list uses a pager if configured to' ' + git config pager.rev-list true && + test_terminal git rev-list HEAD && + test -e paginated.out +' +git config --unset pager.rev-list + +rm -f paginated.out +test_expect_failure TTY 'git config uses a pager if configured to' ' + git config pager.config true && + test_terminal git config --list && + test -e paginated.out +' +git --no-pager config --unset pager.config + rm -f file paginated.out test_expect_success 'no pager even with --paginate when stdout is a pipe' ' git --paginate log | cat && @@ -239,4 +255,8 @@ test_pager_choice test_must_fail 'git -p' failure no doesnt_paginate test_must_fail 'git -p nonsense' +doesnt_paginate 'git rev-list HEAD' +git config pager.rev-list true +test_pager_choice 'git rev-list HEAD' + test_done -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html