module FuzzBert::Handler::ConsoleHelper

Public Instance Methods

info(error_data) click to toggle source
# File lib/fuzzbert/error_handler.rb, line 5
def info(error_data)
  status = error_data[:status]

  crashed = status.termsig

  if crashed
    puts "The data caused a hard crash."
  else
    puts "The data caused an uncaught error."
  end
end