rds.feature 493 B

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