Testing Fundamentals - Testing Types and Levels
Consider this code snippet representing a test suite run:
What will be the output?
def smoke_test(build):
if build['critical_feature'] == 'working':
return 'Pass'
else:
return 'Fail'
result = smoke_test({'critical_feature': 'working'})
print(result)What will be the output?
