class RSpec::Core::Bisect::Channel

def initialize

def initialize
  @read_io, @write_io = IO.pipe
  if defined?(MARSHAL_DUMP_ENCODING) && IO.method_defined?(:set_encoding)
    # Ensure the pipe can send any content produced by Marshal.dump
    @write_io.set_encoding MARSHAL_DUMP_ENCODING
  end
end