# This test verified that having debug set to false in the config file can be # overridden by the command line option --debug test_name "C100044: flags set on the command line override config file settings" do tag 'risk:medium' require 'facter/acceptance/user_fact_utils' extend Facter::Acceptance::UserFactUtils config = < [0, 1]) end step "Agent #{agent}: create config file in default location" do on(agent, "mkdir -p '#{config_dir}'") create_remote_file(agent, config_file, config) end step "--debug flag should override debug=false in config file" do on(agent, facter("--debug")) do |facter_output| assert_match(/DEBUG/, facter_output.stderr, "Expected DEBUG information in stderr") end end end end