emr.feature 496 B

12345678910111213141516
  1. # language: en
  2. @emr @client @elasticmapreduce
  3. Feature: Amazon EMR
  4. Scenario: Making a request
  5. When I call the "ListClusters" API
  6. Then the value at "Clusters" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "DescribeCluster" API with:
  9. | ClusterId | fake_cluster |
  10. Then I expect the response error code to be "InvalidRequestException"
  11. And I expect the response error message to include:
  12. """
  13. Cluster id 'fake_cluster' is not valid.
  14. """