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