class Byebug::TestInterface

def readline(prompt)

def readline(prompt)
  puts(prompt)
  cmd = input.shift
  cmd.is_a?(Proc) ? cmd.call : cmd
end