cloudsearch.feature 490 B

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