Method: Inspec::Reporters::CLI::Control#impact_string_for_result
- Defined in:
- lib/inspec/reporters/cli.rb
#impact_string_for_result(result) ⇒ Object
348 349 350 351 352 353 354 355 356 357 358 |
# File 'lib/inspec/reporters/cli.rb', line 348 def impact_string_for_result(result) if result[:status] == 'skipped' 'skipped' elsif result[:status] == 'passed' 'passed' elsif impact.nil? 'unknown' else 'failed' end end |