from common.src.aws import responses from common.src.enums import AWSResponse def test_http_200(): """ Test the http_200 function. """ response = responses.http_200() assert response[AWSResponse.STATUS_CODE] == 200 assert response[AWSResponse.BODY] == "OK"