Sha256: 84934d3c138e60155174bc37366e214e5b84c05add5bdaca844de585cc5ee72d

Contents?: true

Size: 573 Bytes

Versions: 4

Compression:

Stored size: 573 Bytes

Contents

# language: en
@dynamodb @client
Feature: Amazon DynamoDB

  Scenario: Making a basic request
    When I call "list_tables" on "dynamodb" with:
    """
    { limit: 1 }
    """
    Then the response "table_names" should be an array

  Scenario: Error handling
    Given I call "describe_table" on "dynamodb" with:
    """
    { table_name: 'fake_table' }
    """
    Then I expect the response error code to be "ResourceNotFoundException"
    And I expect the response error message to include:
    """
    Requested resource not found: Table: fake_table not found
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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