elasticbeanstalk.feature 563 B

12345678910111213141516
  1. # language: en
  2. @elasticbeanstalk @client
  3. Feature: AWS Elastic Beanstalk
  4. Scenario: Making a request
  5. When I call the "ListAvailableSolutionStacks" API
  6. Then the value at "SolutionStacks" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "DescribeEnvironmentResources" API with:
  9. | EnvironmentId | fake_environment |
  10. Then I expect the response error code to be "InvalidParameterValue"
  11. And I expect the response error message to include:
  12. """
  13. No Environment found for EnvironmentId = 'fake_environment'.
  14. """