moto/tests/test_kinesis/test_server.py

16 lines
370 B
Python
Raw Normal View History

2014-11-26 15:55:58 +00:00
import json
import moto.server as server
2024-01-07 12:03:33 +00:00
from moto import mock_aws
2014-11-26 15:55:58 +00:00
2024-01-07 12:03:33 +00:00
@mock_aws
2014-11-26 15:55:58 +00:00
def test_list_streams():
backend = server.create_backend_app("kinesis")
test_client = backend.test_client()
2019-10-31 15:44:26 +00:00
res = test_client.get("/?Action=ListStreams")
2014-11-26 15:55:58 +00:00
json_data = json.loads(res.data.decode("utf-8"))
assert json_data == {"HasMoreStreams": False, "StreamNames": []}