1# language: en
2@smoke @cloudsearch
3Feature: Amazon CloudSearch
4
5  Scenario: Making a request
6    When I call the "DescribeDomains" API
7    Then the response should contain a "DomainStatusList"
8
9  Scenario: Handling errors
10    When I attempt to call the "DescribeIndexFields" API with:
11      | DomainName | fakedomain |
12    Then I expect the response error code to be "ResourceNotFound"
13