Method: Inspec::Reporters::CLI::Control#impact_string_for_result

Defined in:
lib/inspec/reporters/cli.rb

#impact_string_for_result(result) ⇒ Object



504
505
506
507
508
509
510
511
512
513
514
# File 'lib/inspec/reporters/cli.rb', line 504

def impact_string_for_result(result)
  if result[:status] == "skipped"
    "skipped"
  elsif result[:status] == "passed"
    "passed"
  elsif impact.nil?
    "unknown"
  else
    "failed"
  end
end