class Hurley::Test::Integration::GenericIO

Public Class Methods

new(str) click to toggle source
# File lib/hurley/test/integration.rb, line 239
def initialize(str)
  @io = StringIO.new(str)
end

Public Instance Methods

read(*args) click to toggle source
# File lib/hurley/test/integration.rb, line 243
def read(*args)
  @io.read(*args)
end