sqs.feature 522 B

12345678910111213141516
  1. # language: en
  2. @sqs @client
  3. Feature: Amazon Simple Queue Service
  4. Scenario: Making a request
  5. When I call the "ListQueues" API
  6. Then the value at "QueueUrls" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "GetQueueUrl" API with:
  9. | QueueName | fake_queue |
  10. Then I expect the response error code to be "AWS.SimpleQueueService.NonExistentQueue"
  11. And I expect the response error message to include:
  12. """
  13. The specified queue does not exist for this wsdl version.
  14. """