-
-
Save Kipngetich33/c0cf8052b7bb4de16e8300672ae10830 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import builtins | |
input_values = [] | |
print_values = [] | |
def mock_input(s): | |
print_values.append(s) | |
return input_values.pop(0) | |
def mock_input_output_start(): | |
global input_values, print_values | |
input_values = [] | |
print_values = [] | |
builtins.input = mock_input | |
builtins.print = lambda s: print_values.append(s) | |
def get_display_output(): | |
global print_values | |
return print_values | |
def set_keyboard_input(mocked_inputs): | |
global input_values | |
mock_input_output_start() | |
input_values = mocked_inputs | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment