Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 626 Bytes

index.rst

File metadata and controls

33 lines (21 loc) · 626 Bytes

Implemented Services

Please see a list of all currently supported services. Each service will have a list of the endpoints that are implemented. Each service will also have an example on how to mock an individual service.

Note that you can mock multiple services at the same time:

python

@mock_s3 @mock_sqs def test_both_s3_and_sqs(): ...

python

@mock_all() def test_all_supported_services_at_the_same_time(): ...