Start the 2.46 cycle
[git/gitster.git] / t / t0018-advice.sh
blob0dcfb760a2ba922570d12e17cc1ff6297bdab913
1 #!/bin/sh
3 test_description='Test advise_if_enabled functionality'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
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
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
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
32 test_done