Rest API - API Testing and Monitoring
You want to write an integration test that verifies your REST API endpoint
/users returns only active users. The API returns JSON like {"users": [{"id":1,"active":true}, {"id":2,"active":false}]}. Which test code snippet correctly checks this condition?