class Riot::VerboseStoryReporter

Same as {Riot::StoryReporter} except that backtraces are printed for assertions with errors

Public Instance Methods

error(description, e) click to toggle source

Prints the description of the assertion and the exception backtrace. Prints in red if possible.

@param (see Riot::Reporter#error)

Calls superclass method Riot::StoryReporter#error
# File lib/riot/reporter/story.rb, line 46
def error(description, e)
  super
  puts red(format_error(e))
end