autoscaling.feature 598 B

123456789101112131415161718
  1. # language: en
  2. @autoscaling @client
  3. Feature: Auto Scaling
  4. Scenario: Making a request
  5. When I call the "DescribeScalingProcessTypes" API
  6. Then the value at "Processes" should be a list
  7. Scenario: Handing errors
  8. When I attempt to call the "CreateLaunchConfiguration" API with:
  9. | LaunchConfigurationName | |
  10. | ImageId | ami-12345678 |
  11. | InstanceType | m1.small |
  12. Then I expect the response error code to be "InvalidParameter"
  13. And I expect the response error message to include:
  14. """
  15. LaunchConfigurationName
  16. """