moto/tests/test_batch/test_server.py

16 lines
320 B
Python
Raw Normal View History

2017-09-26 17:37:26 +01:00
import moto.server as server
2024-01-07 12:03:33 +00:00
from moto import mock_aws
2017-09-26 17:37:26 +01:00
2019-10-31 08:44:26 -07:00
"""
2017-09-26 17:37:26 +01:00
Test the different server responses
2019-10-31 08:44:26 -07:00
"""
2017-09-26 17:37:26 +01:00
2017-10-22 21:36:39 +01:00
2024-01-07 12:03:33 +00:00
@mock_aws
2017-09-26 17:37:26 +01:00
def test_batch_list():
backend = server.create_backend_app("batch")
test_client = backend.test_client()
2017-10-22 21:36:39 +01:00
2019-10-31 08:44:26 -07:00
res = test_client.get("/v1/describecomputeenvironments")
assert res.status_code == 200