class RSpec::Core::Formatters::BaseTextFormatter

def close(_notification)

Parameters:
  • _notification (NullNotification) -- (Ignored)

Other tags:
    Api: - public
def close(_notification)
  return unless IO === output
  return if output.closed?
  output.puts
  output.flush
  output.close unless output == $stdout
end