From 7d926bfd934a27dcf6580a6781f72ea00473b630 Mon Sep 17 00:00:00 2001 From: mouftz Date: Thu, 6 Aug 2026 15:23:47 -0400 Subject: [PATCH] I completed onboarding --- tests/test_introduction.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_introduction.py b/tests/test_introduction.py index 8ccc119..93e724b 100644 --- a/tests/test_introduction.py +++ b/tests/test_introduction.py @@ -15,10 +15,7 @@ class TestIntroductory: @pytest.fixture def user_list(self): - return [ - "Zain-Mahmoud", - "kurbydoo", - ] + return ["Zain-Mahmoud", "kurbydoo", "mouftz"] def test_kurbydoo(self, user_list): assert 1 + 1 == 2, "Somthing went really wrong" @@ -30,7 +27,7 @@ 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 @@ -41,3 +38,6 @@ def test_Zain_Mahmoud(self, user_list): num_list = range(15) assert all((2 * x) % 2 == 0 for x in num_list), "Check even" + + def test_mouftz(self, user_list): + assert "racecar" == "racecar"[::-1], "Check palindrome"