# Test that demonstrates failing assertions $add = (x, y) -> x + y; BEGIN { print "Testing assertion failures (this should fail):" # This should pass result = add(2, 3) expect_equal(result, 5, "add(2, 3) should return 5") print "✓ This assertion should pass" # This should fail result = add(2, 3) expect_equal(result, 10, "add(2, 3) should return 10 (this will fail)") print "This line should not be reached" }