Method: ChefDK::Command::Verify#report_results
- Defined in:
- lib/chef-dk/command/verify.rb
#report_results ⇒ Object
398 399 400 401 402 403 404 405 |
# File 'lib/chef-dk/command/verify.rb', line 398 def report_results msg("") msg("---------------------------------------------") verification_results.each do |result| = result[:component_status] == 0 ? "succeeded" : "failed" msg("Verification of component '#{result[:component].name}' #{}.") end end |