Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion tests/test_introduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def user_list(self):
return [
"Zain-Mahmoud",
"kurbydoo",
"DanisLol",
]

def test_kurbydoo(self, user_list):
Expand All @@ -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):

Expand Down