Verify that a function raises ValueError with correct message
Preconditions (2)
Step 1: Call the function divide with arguments 10 and 0
Step 2: Catch the exception raised
Step 3: Verify that the exception is of type ValueError
Step 4: Verify that the exception message contains the text 'division by zero is not allowed'
✅ Expected Result: The test should pass only if ValueError is raised and the message contains 'division by zero is not allowed'