Sha256: 65b24feb7f4a96e0c2af86a94a3937e1d53146bd24ef9043c2b87459c8382fd1

Contents?: true

Size: 550 Bytes

Versions: 4

Compression:

Stored size: 550 Bytes

Contents

# language: en
@directconnect @client
Feature: AWS Direct Connect

  Scenario: Making a basic request
    When I call "describe_offerings" on "directconnect"
    Then the response "offerings" should be an array

  Scenario: Error handling
    Given I call "describe_offering_detail" on "directconnect" with:
    """
    { offering_id: 'fake_offering' }
    """
    Then I expect the response error code to be "DirectConnectClientException"
    And I expect the response error message to include:
    """
    Offering not found: fake_offering
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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