Skip to content

Instantly share code, notes, and snippets.

@steveklabnik
Created December 9, 2012 02:36
Embed
What would you like to do?
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