Sha256: 1250fb35b4830cab96e47116f1549de5ae9bf4ab096ef0d4e5433a0aff74454b

Contents?: true

Size: 585 Bytes

Versions: 4

Compression:

Stored size: 585 Bytes

Contents

# language: en
@ec2 @client
Feature: Amazon Elastic Compute Cloud

  Scenario: Making a basic request
    When I call "describe_regions" on "ec2" with:
    """
    { region_names: ['us-west-2'] }
    """
    Then the response "regions" should be an array

  Scenario: Error handling
    Given I call "describe_instances" on "ec2" with:
    """
    { instance_ids: ['i-12345678'] }
    """
    Then I expect the response error code to be "InvalidInstanceIDNotFound"
    And I expect the response error message to include:
    """
    The instance ID 'i-12345678' does not exist
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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