Sha256: 023e4c12be6843d31b5ab31d1ccd6a3c6257380f8205e84ddf7ff5b8a5945fec

Contents?: true

Size: 608 Bytes

Versions: 4

Compression:

Stored size: 608 Bytes

Contents

# language: en
@cloudformation @client
Feature: AWS CloudFormation

  Scenario: Making a basic request
    When I call "list_stacks" on "cloudformation"
    Then the response "stack_summaries" should be an array

  Scenario: Error handling
    Given I call "create_stack" on "cloudformation" with:
    """
    { stack_name: "fakestack", template_url: "http://s3.amazonaws.com/foo/bar" }
    """
    Then I expect the response error code to be "ValidationError"
    And I expect the response error message to include:
    """
    TemplateURL must reference a valid S3 object to which you have access.
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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