diff --git a/tests.py b/tests.py index 01bd4daeecfb3d9bf582ee53bbe1e477f6d5194f..7f152da523d3a9bd8eb8df9283c6840337432ee7 100644 --- a/tests.py +++ b/tests.py @@ -6,6 +6,8 @@ import os import shutil import subprocess from pathlib import Path +from io import StringIO +import sys import pytest @@ -102,6 +104,17 @@ def test_run_method(tmp_path): with pytest.raises(subprocess.CalledProcessError): run(["ls", "/doesnotexist"], check=True) + # test that the counter works correctly: + # check that ##-08 is printed when run(["echo", "Good Bye, world!"]) is run + # the 8 in ##-08 is present because + # this is the 8th run of the `run` function + stdout_original = sys.stdout # preserve current stdout stream + captured_output = StringIO() # create an in-memory file-like object. + sys.stdout = captured_output # redirect stdout to the file + run(["echo", "Good Bye, world!"]) + sys.stdout = stdout_original # restores the original stdout + assert "##-08" in captured_output.getvalue() + def test_prepare_environment(tmp_path): """Simulate running preparation of environment.