about summary refs log tree commit diff
path: root/third_party/git/t/lib-pager.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/lib-pager.sh')
-rw-r--r--third_party/git/t/lib-pager.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/git/t/lib-pager.sh b/third_party/git/t/lib-pager.sh
new file mode 100644
index 0000000000..3aa7a3ffd8
--- /dev/null
+++ b/third_party/git/t/lib-pager.sh
@@ -0,0 +1,15 @@
+# Helpers for tests of git's choice of pager.
+
+test_expect_success 'determine default pager' '
+	test_might_fail git config --unset core.pager &&
+	less=$(
+		unset PAGER GIT_PAGER;
+		git var GIT_PAGER
+	) &&
+	test -n "$less"
+'
+
+if expr "$less" : '[a-z][a-z]*$' >/dev/null
+then
+	test_set_prereq SIMPLEPAGER
+fi