Testing Fundamentals - Testing Models and Approaches
In Agile testing, what is the expected output of this Python code simulating test status updates?
statuses = ['fail', 'pass', 'fail'] final = 'pass' if 'fail' not in statuses else 'fail' print(final)
