Sha256: 6abd1eb87f5966bab8cbb04f724b54138e6633bcffe8c8c23abd652203c82dde

Contents?: true

Size: 541 Bytes

Versions: 8

Compression:

Stored size: 541 Bytes

Contents

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

  Scenario: Making a basic request
    When I call the "ListTables" API with:
    | Limit | 1 |
    Then the response should contain a list of "TableNames"

  Scenario: Error handling
    When I attempt to call the "DescribeTable" API with:
    | TableName | 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

8 entries across 8 versions & 1 rubygems

Version Path
aws-sdk-core-2.0.0.rc12 features/dynamodb/client.feature
aws-sdk-core-2.0.0.rc11 features/dynamodb/client.feature
aws-sdk-core-2.0.0.rc10 features/dynamodb/client.feature
aws-sdk-core-2.0.0.rc9 features/dynamodb/client.feature
aws-sdk-core-2.0.0.rc8 features/dynamodb/client.feature
aws-sdk-core-2.0.0.rc7 features/dynamodb/client.feature
aws-sdk-core-2.0.0.rc6 features/dynamodb/client.feature
aws-sdk-core-2.0.0.rc5 features/dynamodb/client.feature