]> git.ipfire.org Git - thirdparty/git.git/blob - t/t0018-advice.sh
commit-reach(repo_get_merge_bases_many_dirty): pass on errors
[thirdparty/git.git] / t / t0018-advice.sh
1 #!/bin/sh
2
3 test_description='Test advise_if_enabled functionality'
4
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
7
8 test_expect_success 'advice should be printed when config variable is unset' '
9 cat >expect <<-\EOF &&
10 hint: This is a piece of advice
11 hint: Disable this message with "git config advice.nestedTag false"
12 EOF
13 test-tool advise "This is a piece of advice" 2>actual &&
14 test_cmp expect actual
15 '
16
17 test_expect_success 'advice should be printed when config variable is set to true' '
18 cat >expect <<-\EOF &&
19 hint: This is a piece of advice
20 EOF
21 test_config advice.nestedTag true &&
22 test-tool advise "This is a piece of advice" 2>actual &&
23 test_cmp expect actual
24 '
25
26 test_expect_success 'advice should not be printed when config variable is set to false' '
27 test_config advice.nestedTag false &&
28 test-tool advise "This is a piece of advice" 2>actual &&
29 test_must_be_empty actual
30 '
31
32 test_done