PyTest - Writing Assertions
You want to test a function that returns a list of even numbers from 1 to 5. Which assert statement with a message best helps debug if the test fails?
def get_evens():
return [2, 4]
def test_evens():
result = get_evens()
# Choose the best assert with message
