es.feature 518 B

12345678910111213141516
  1. # language: en
  2. @es @elasticsearchservice
  3. Feature: Amazon ElasticsearchService
  4. Scenario: Making a request
  5. When I call the "ListDomainNames" API
  6. Then the value at "DomainNames" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "DescribeElasticsearchDomain" API with:
  9. | DomainName | not-a-domain |
  10. Then the error code should be "ResourceNotFoundException"
  11. And I expect the response error message to include:
  12. """
  13. Domain not found: not-a-domain
  14. """