moto/tests/test_batch/test_server.py
2024-01-27 19:38:09 +00:00

16 lines
320 B
Python

import moto.server as server
from moto import mock_aws
"""
Test the different server responses
"""
@mock_aws
def test_batch_list():
backend = server.create_backend_app("batch")
test_client = backend.test_client()
res = test_client.get("/v1/describecomputeenvironments")
assert res.status_code == 200