From 656cf5880bf9641c91642766d15fba56d1238ce9 Mon Sep 17 00:00:00 2001 From: Loc Nguyen Date: Sun, 25 Feb 2024 15:59:12 +0700 Subject: [PATCH] Add mock test --- exercises/python-helloworld/test_with_pytest.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 exercises/python-helloworld/test_with_pytest.py diff --git a/exercises/python-helloworld/test_with_pytest.py b/exercises/python-helloworld/test_with_pytest.py new file mode 100644 index 000000000..a85ca30ed --- /dev/null +++ b/exercises/python-helloworld/test_with_pytest.py @@ -0,0 +1,2 @@ +def test_always_passes(): + assert True \ No newline at end of file