moto/tests/test_kinesis/test_server.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
434 B
Python
Raw Normal View History

2014-11-26 15:55:58 +00:00
import json
2021-10-18 19:44:29 +00:00
import sure # noqa # pylint: disable=unused-import
2014-11-26 15:55:58 +00:00
import moto.server as server
from moto import mock_kinesis
@mock_kinesis
def test_list_streams():
backend = server.create_backend_app("kinesis")
test_client = backend.test_client()
res = test_client.get("/?Action=ListStreams")
json_data = json.loads(res.data.decode("utf-8"))
json_data.should.equal({"HasMoreStreams": False, "StreamNames": []})