Sha256: c8649a901fbb90c4d88c395ca04463de4425277adca656c60494bd339f6bcece

Contents?: true

Size: 490 Bytes

Versions: 4

Compression:

Stored size: 490 Bytes

Contents

# language: en
@sdb @client
Feature: Amazon SimpleDB

  Scenario: Making a basic request
    When I call "list_domains" on "sdb"
    Then the response "domain_names" should be an array

  Scenario: Error handling
    Given I call "domain_metadata" on "sdb" with:
    """
    { domain_name: 'fake-domain' }
    """
    Then I expect the response error code to be "NoSuchDomain"
    And I expect the response error message to include:
    """
    The specified domain does not exist.
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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