moto/tests/test_polly/test_server.py

14 lines
300 B
Python
Raw Normal View History

"""Test the different server responses."""
2017-09-26 15:46:18 +00:00
import moto.server as server
2024-01-07 12:03:33 +00:00
from moto import mock_aws
2017-09-26 15:46:18 +00:00
2017-09-27 08:54:46 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2017-09-26 15:46:18 +00:00
def test_polly_list():
backend = server.create_backend_app("polly")
test_client = backend.test_client()
2017-09-27 08:54:46 +00:00
2019-10-31 15:44:26 +00:00
res = test_client.get("/v1/lexicons")
assert res.status_code == 200