3 test_description
='help'
8 test_config
help.format html
&&
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
&&
16 # Name a custom browser
17 test_config browser.
test.cmd .
/test-browser
&&
18 test_config
help.browser
test
21 test_expect_success
"setup" '
22 # Just write out which page gets requested
23 write_script test-browser <<-\EOF
24 echo "$*" >test-browser.log
28 test_expect_success
"works for commands and guides by default" '
31 echo "test://html/git-status.html" >expect &&
32 test_cmp expect test-browser.log &&
34 echo "test://html/gitrevisions.html" >expect &&
35 test_cmp expect test-browser.log
38 test_expect_success
"--exclude-guides does not work for guides" '
40 test_must_fail git help --exclude-guides revisions &&
41 test_must_be_empty test-browser.log
44 test_expect_success
"--help does not work for guides" "
46 git: 'revisions' is not a git command. See 'git --help'.
48 test_must_fail git revisions --help 2>actual &&
49 test_i18ncmp expect actual