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