class RSpec3

def example_failed(notification)

def example_failed(notification)
  # TODO: Lazy fix for specs
  if notification.respond_to?(:example)
    super(notification)
  else
    super(OpenStruct.new(:example => notification))
  end
  @failure_count += 1
  tick FAIL
end