module Spree::TestingSupport::Kernel

Private Instance Methods

silence_stream(stream) { || ... } click to toggle source
# File lib/spree/testing_support/kernel.rb, line 6
def silence_stream(stream)
  old_stream = stream.dup
  stream.reopen(RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ ? 'NUL:' : '/dev/null')
  stream.sync = true
  yield
ensure
  stream.reopen(old_stream)
  old_stream.close
end