Testing Fundamentals - Why Software Testing Matters
A test script has this code:
def test_divide():
result = 10 / 0
assert result == 0
What is the main problem with this test?