Sha256: 73e1fa496eeab6f8ddf307030de1ef7b398afbc1260bf854dc42f269c2ef4f41

Contents?: true

Size: 634 Bytes

Versions: 4

Compression:

Stored size: 634 Bytes

Contents

# language: en
@autoscaling @client
Feature: Auto Scaling

  Scenario: Making a basic request
    When I call "describe_scaling_process_types" on "autoscaling"
    Then the response "processes" should be an array

  Scenario: Error handling
    Given I call "create_launch_configuration" on "autoscaling" with:
    """
    {
      launch_configuration_name: "",
      image_id: "ami-12345678",
      instance_type: "m1.small",
    }
    """
    Then I expect the response error code to be "ValidationError"
    And I expect the response error message to include:
    """
    Member must have length greater than or equal to 1
    """

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
aws-sdk-core-2.0.0.rc4 features/autoscaling/client.feature
aws-sdk-core-2.0.0.rc3 features/autoscaling/client.feature
aws-sdk-core-2.0.0.rc2 features/autoscaling/client.feature
aws-sdk-core-2.0.0.rc1 features/autoscaling/client.feature