module RSpec::Support

def self.with_failure_notifier(callable)

Other tags:
    Api: - private
def self.with_failure_notifier(callable)
  orig_notifier = failure_notifier
  self.failure_notifier = callable
  yield
ensure
  self.failure_notifier = orig_notifier
end