1# language: en
2@smoke @elasticbeanstalk
3Feature: AWS Elastic Beanstalk
4
5  Scenario: Making a request
6    When I call the "ListAvailableSolutionStacks" API
7    Then the value at "SolutionStacks" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "DescribeEnvironmentResources" API with:
11      | EnvironmentId | fake_environment |
12    Then I expect the response error code to be "InvalidParameterValue"
13