tests: Add tests for automatic use of pager
authorJonathan Nieder <jrnieder@gmail.com>
Fri, 19 Feb 2010 07:18:58 +0000 (01:18 -0600)
committerJunio C Hamano <gitster@pobox.com>
Sat, 20 Feb 2010 17:34:28 +0000 (09:34 -0800)
commit60b6e2200deff208a9757721544a3a311034804f
treeb44b0706189ac92ecaab61441bea0efda06d9a87
parentf6dff119d51e0067d213068093039bb2f939d139
tests: Add tests for automatic use of pager

Git’s automatic pagination support has some subtleties.  Add some
tests to make sure we don’t break:

 - when git will use a pager by default;
 - the effect of the --paginate and --no-pager options;
 - the effect of pagination on use of color;
 - how the choice of pager is configured.

This does not yet test:

 - use of pager by scripted commands (git svn and git am);
 - effect of the pager.* configuration variables;
 - setting of the LESS variable.

Some features involve checking whether stdout is a terminal, so many
of these tests are skipped unless output is passed through to the
terminal (i.e., unless $GIT_TEST_OPTS includes --verbose).

The immediate purpose for these tests was to avoid making things worse
after the breakage from my jn/editor-pager series (see commit 376f39,
2009-11-20).  Thanks to Sebastian Celis <sebastian@sebastiancelis.com>
for the report.

Helped-by: Jeff King <peff@peff.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7006-pager.sh [new file with mode: 0755]