1# language: en
2@rds @client
3Feature: Amazon RDS
4
5  Scenario: Making a request
6    When I call the "DescribeDBEngineVersions" API
7    Then the value at "DBEngineVersions" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "DescribeDBInstances" API with:
11      | DBInstanceIdentifier | fake-id |
12    Then I expect the response error code to be "DBInstanceNotFound"
13    And I expect the response error message to include:
14    """
15    DBInstance fake-id not found.
16    """
17