asciinema.org/spec/support/fakes.rb

20 lines
172 B
Ruby
Raw Normal View History

class FakeTerminal
def initialize
@data = ''
end
def feed(data)
@data << data
end
def snapshot
@data
end
def cursor
@data.size
end
end