elasticloadbalancing.feature 617 B

123456789101112131415161718
  1. # language: en
  2. @elasticloadbalancing @client
  3. Feature: Elastic Load Balancing
  4. Scenario: Making a request
  5. When I call the "DescribeLoadBalancers" API
  6. Then the value at "LoadBalancerDescriptions" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "DescribeLoadBalancers" API with JSON:
  9. """
  10. {"LoadBalancerNames": ["fake_load_balancer"]}
  11. """
  12. Then I expect the response error code to be "ValidationError"
  13. And I expect the response error message to include:
  14. """
  15. LoadBalancer name cannot contain characters that are not letters, or digits or the dash.
  16. """