Skip to content

Instantly share code, notes, and snippets.

View pavlix's full-sized avatar

Pavel Šimerda pavlix

View GitHub Profile
import pytest
import subprocess
class Expect:
def __init__(self):
self._input = []
self._output = []
def input(self, chunk):
print("Input: {!r}".format(chunk))