Sha256: f60f6f9c2dd48b4eaa2e41c0138c0c1a20e15f6c12bad78287421b6594b6bd22

Contents?: true

Size: 558 Bytes

Versions: 4

Compression:

Stored size: 558 Bytes

Contents

# language: en
@storagegateway @client
Feature: AWS Storage Gateway

  Scenario: Making a basic request
    When I call "list_gateways" on "storagegateway"
    Then the response "gateways" should be an array

  Scenario: Error handling
    Given I call "list_volumes" on "storagegateway" with:
    """
    { gateway_arn: 'fake_gateway' }
    """
    Then I expect the response error code to be "ValidationException"
    And I expect the response error message to include:
    """
    Value 'fake_gateway' at 'gatewayARN' failed to satisfy constraint
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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