Skip to content

Instantly share code, notes, and snippets.

@steveklabnik
Created December 9, 2012 02:36
Show Gist options
  • Select an option

  • Save steveklabnik/4243061 to your computer and use it in GitHub Desktop.

Select an option

Save steveklabnik/4243061 to your computer and use it in GitHub Desktop.
Stubbing getch/print in minitest
STDIN.stub :getch, "a" do
STDOUT.stub :print, nil do
c = STDIN.getch
print "c is #{c}"
STDOUT.print c
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment