Sha256: bfc530eb188172f46c0ebb9c51c8527c92ef9af2934d06651ca70a9fa97e5fc0

Contents?: true

Size: 709 Bytes

Versions: 4

Compression:

Stored size: 709 Bytes

Contents

# language: en
@sqs @client
Feature: Amazon Simple Queue Service

  Scenario: Making a basic request
    When I call "list_queues" on "sqs"
    Then the response "queue_urls" should be an array

  Scenario: Cross Region Queue Operatoins
    Given I create a queue in "us-west-1"
    When I operate on that queue in "us-west-2"
    Then the request should be made against "us-west-1"

  Scenario: Error handling
    Given I call "get_queue_url" on "sqs" with:
    """
    { queue_name: 'fake_queue' }
    """
    Then I expect the response error code to be "NonExistentQueue"
    And I expect the response error message to include:
    """
    The specified queue does not exist for this wsdl version.
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aws-sdk-core-2.0.0.rc4 features/sqs/client.feature
aws-sdk-core-2.0.0.rc3 features/sqs/client.feature
aws-sdk-core-2.0.0.rc2 features/sqs/client.feature
aws-sdk-core-2.0.0.rc1 features/sqs/client.feature