You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/spec/support/fakes.rb

15 lines
168 B
Ruby

class FakeTerminal
def initialize
@data = ''
end
def feed(data)
@data << data
end
def screen
{ snapshot: @data, cursor: @data.size }
end
end