directconnect.feature 533 B

12345678910111213141516
  1. # language: en
  2. @directconnect @client
  3. Feature: AWS Direct Connect
  4. Scenario: Making a request
  5. When I call the "DescribeConnections" API
  6. Then the value at "connections" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "DescribeConnections" API with:
  9. | connectionId | fake-connection |
  10. Then I expect the response error code to be "DirectConnectClientException"
  11. And I expect the response error message to include:
  12. """
  13. Connection ID fake-connection has an invalid format
  14. """