]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0012-help.sh
git: add hidden --list-builtins option
[thirdparty/git.git] / t / t0012-help.sh
CommitLineData
af74128f
RT
1#!/bin/sh
2
3test_description='help'
4
5. ./test-lib.sh
6
7configure_help () {
8 test_config help.format html &&
9
10 # Unless the path has "://" in it, Git tries to make sure
11 # the documentation directory locally exists. Avoid it as
12 # we are only interested in seeing an attempt to correctly
13 # invoke a help browser in this test.
14 test_config help.htmlpath test://html &&
15
16 # Name a custom browser
17 test_config browser.test.cmd ./test-browser &&
18 test_config help.browser test
19}
20
21test_expect_success "setup" '
22 # Just write out which page gets requested
23 write_script test-browser <<-\EOF
24 echo "$*" >test-browser.log
25 EOF
26'
27
28test_expect_success "works for commands and guides by default" '
29 configure_help &&
30 git help status &&
31 echo "test://html/git-status.html" >expect &&
32 test_cmp expect test-browser.log &&
33 git help revisions &&
34 echo "test://html/gitrevisions.html" >expect &&
35 test_cmp expect test-browser.log
36'
37
38test_expect_success "--exclude-guides does not work for guides" '
39 >test-browser.log &&
40 test_must_fail git help --exclude-guides revisions &&
41 test_must_be_empty test-browser.log
42'
43
2c6b6d9f
RT
44test_expect_success "--help does not work for guides" "
45 cat <<-EOF >expect &&
46 git: 'revisions' is not a git command. See 'git --help'.
47 EOF
48 test_must_fail git revisions --help 2>actual &&
49 test_i18ncmp expect actual
50"
51
af74128f 52test_done