moto/tests/test_core/test_mock_all.py

21 lines
595 B
Python
Raw Normal View History

2021-11-09 22:29:28 +00:00
import boto3
import sure # noqa # pylint: disable=unused-import
from moto import mock_all
@mock_all()
def test_multiple_services():
rgn = "us-east-1"
sqs = boto3.client("sqs", region_name=rgn)
r = sqs.list_queues() #
r["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
lmbda = boto3.client("lambda", region_name=rgn)
r = lmbda.list_event_source_mappings()
r["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)
ddb = boto3.client("dynamodb", region_name=rgn)
r = ddb.list_tables()
r["ResponseMetadata"]["HTTPStatusCode"].should.equal(200)