redshift.feature 499 B

12345678910111213141516
  1. # language: en
  2. @redshift @client
  3. Feature: Amazon Redshift
  4. Scenario: Making a request
  5. When I call the "DescribeClusterVersions" API
  6. Then the value at "ClusterVersions" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "DescribeClusters" API with:
  9. | ClusterIdentifier | fake-cluster |
  10. Then I expect the response error code to be "ClusterNotFound"
  11. And I expect the response error message to include:
  12. """
  13. Cluster fake-cluster not found.
  14. """