Testing Fundamentals - Testing Types and Levels
The following pseudo-code is intended to perform a smoke test but has an error:
What is the error and how to fix it?
def smoke_test(build):
if build['feature'] = 'ready':
return 'Pass'
else:
return 'Fail'What is the error and how to fix it?
