test_description='cli options can override config file' . '../test-lib.bash' test_expect_success 'run 1' ' (run_dotbot -vv | (grep "^apple")) <&2 EOF ' test_expect_success 'run 5' ' (run_dotbot -vv 2>&1 | (grep "^apple")) <&2 EOF ' test_expect_success 'run 6' ' (run_dotbot -vv 2>&1 | (grep "^apple")) <&2 stdout: false EOF ' test_expect_success 'run 7' ' (run_dotbot -vv 2>&1 | (grep "^apple")) <&2 EOF ' # Make sure that we must use verbose level 2 # This preserves backwards compatability test_expect_failure 'run 8' ' (run_dotbot -v | (grep "^apple")) <&2 EOF '