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
3 changes: 3 additions & 0 deletions 026_ifs.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ def is_first_of_the_month(day_number):
# Return "Not first of the month" otherwise.
pass

def is_first_of_the_month(actual, expected):
assert actual == expected, f"Expected {expected}, but got {actual}"

check_that_these_are_equal(
is_first_of_the_month(1),
"First of the month!"
Expand Down