diff --git a/tests/test_introduction.py b/tests/test_introduction.py index 8ccc119..7b47d3f 100644 --- a/tests/test_introduction.py +++ b/tests/test_introduction.py @@ -18,6 +18,7 @@ def user_list(self): return [ "Zain-Mahmoud", "kurbydoo", + "DanisLol", ] def test_kurbydoo(self, user_list): @@ -30,9 +31,13 @@ def test_kurbydoo(self, user_list): assert counter == n * (n - 1) // 2, "Check arithmetic sum" - assert len(user_list) == 2 + assert len(user_list) == 3 ### Add your tests below, follow the format above + def test_danislol(self, user_list): + assert 2 + 2 == 4, "basic math" + + assert True is True def test_Zain_Mahmoud(self, user_list):