1# language: en
2@smoke @route53
3Feature: Amazon Route 53
4
5  Scenario: Making a request
6    When I call the "ListHostedZones" API
7    Then the value at "HostedZones" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "GetHostedZone" API with:
11      | Id | fake-zone |
12    Then I expect the response error code to be "NoSuchHostedZone"
13