import sys from skattejakt import Skattejakt from contextlib import contextmanager from io import StringIO # Ikke tenk p? dette @contextmanager def replace_stdin(target): orig = sys.stdin sys.stdin = target yield sys.stdin = orig # Sjekk at spillet stanser med en gang, og at skattekiste blir funnet. def test_spill(): skattejakt = Skattejakt() skattekiste = skattejakt._brett._skattekiste with replace_stdin(StringIO(f"{skattekiste._rad} {skattekiste._kolonne}")): skattejakt.spill() # Fjern # n?r du vil utf?re testen # test_spill()