# File test/tc_test_mu.rb, line 543 def test_cmd_netconfig_save # $log.level = Logger::DEBUG api = Mu::Command::Cmd_netconfig.new File.delete("save.json") if File.exists?("save.json") response = api.cmd_save ["-f", "save.json"] assert(File.exists?("save.json"), "wxpected for find file 'save.json but did not") ensure File.delete("save.json") if File.exists?("save.json") end