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