Sha256: c3ab003434f682acb88172a3001c7dcdcdaf17b127a353fe8b8f2cebc6c15821

Contents?: true

Size: 528 Bytes

Versions: 4

Compression:

Stored size: 528 Bytes

Contents

# language: en
@cloudsearch @client
Feature: Amazon CloudSearch

  Scenario: Making a basic request
    When I call "describe_domains" on "cloudsearch"
    Then the response "domain_status_list" should be an array

  Scenario: Error handling
    Given I call "describe_index_fields" on "cloudsearch" with:
    """
    { domain_name: "fakedomain" }
    """
    Then I expect the response error code to be "ResourceNotFound"
    And I expect the response error message to include:
    """
    Domain not found: fakedomain
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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