Testing Fundamentals - Testing Models and Approaches
Given this Agile test automation snippet, what will be the output?
tests = ['login', 'search', 'checkout']
results = {test: 'pass' for test in tests if test != 'search'}
print(results)