3 test_description
='Test advise_if_enabled functionality'
7 test_expect_success
'advice should be printed when config variable is unset' '
9 hint: This is a piece of advice
10 hint: Disable this message with "git config advice.nestedTag false"
12 test-tool advise "This is a piece of advice" 2>actual &&
13 test_i18ncmp expect actual
16 test_expect_success
'advice should be printed when config variable is set to true' '
17 cat >expect <<-\EOF &&
18 hint: This is a piece of advice
19 hint: Disable this message with "git config advice.nestedTag false"
21 test_config advice.nestedTag true &&
22 test-tool advise "This is a piece of advice" 2>actual &&
23 test_i18ncmp 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