Method: Metaforce::Reporters::DeployReporter#report_failed_tests

Defined in:
lib/metaforce/reporters/deploy_reporter.rb

#report_failed_testsObject

[View source]

13
14
15
16
17
18
19
# File 'lib/metaforce/reporters/deploy_reporter.rb', line 13

def report_failed_tests
  return unless failures?
  say
  say "Failures:", :red
  say
  failures.each { |failure| failed(failure) }
end