python-botocore/tests/acceptance/features/smoke/sqs/sqs.feature
2015-11-24 20:34:53 +09:00

17 lines
514 B
Gherkin

# language: en
@sqs
Feature: Amazon Simple Queue Service
Scenario: Making a request
When I call the "ListQueues" API
Then the value at "QueueUrls" should be a list
Scenario: Handling errors
When I attempt to call the "GetQueueUrl" API with:
| QueueName | fake_queue |
Then I expect the response error code to be "AWS.SimpleQueueService.NonExistentQueue"
And I expect the response error message to include:
"""
The specified queue does not exist for this wsdl version.
"""