Skip to content
Snippets Groups Projects
Commit 9f6b7bd4 authored by David Grellscheid's avatar David Grellscheid
Browse files

added 2 more output tests

parent 25f6213c
No related branches found
No related tags found
No related merge requests found
......@@ -4,3 +4,17 @@ def test_1(capsys):
import svar_0_1
captured = capsys.readouterr()
assert captured.out == answer_1
answer_2 = 'Is there anybody in there?\n'
def test_2(capsys):
import svar_0_2
captured = capsys.readouterr()
assert captured.out == answer_2
answer_3 = 'Is there anyone at home?\n'
def test_3(capsys):
import svar_0_3
captured = capsys.readouterr()
assert captured.out == answer_3
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment