PyTest - Writing Assertions
Consider this pytest test:
What is the purpose of these assertions?
def test_identity():
a = [1, 2]
b = a.copy()
assert a is not b
assert a == bWhat is the purpose of these assertions?
