class FuzzBert::Handler::Console

Public Class Methods

new() click to toggle source
# File lib/fuzzbert/error_handler.rb, line 58
def initialize
  $stdout.sync = true
end

Public Instance Methods

handle(error_data) click to toggle source
# File lib/fuzzbert/error_handler.rb, line 62
def handle(error_data)
  puts "#{error_data[:id]} failed. Data: #{error_data[:data].inspect}"
  info(error_data)
end