Sha256: 3a0ded747d4d173b6d74d3c1554b741997c575db6ac6e4e599d73b69b52db9ff

Contents?: true

Size: 511 Bytes

Versions: 4

Compression:

Stored size: 511 Bytes

Contents

# language: en
@opsworks @client
Feature: AWS OpsWorks

  Scenario: Making a basic request
    When I call "describe_stacks" on "opsworks"
    Then the response "stacks" should be an array

  Scenario: Error handling
    Given I call "describe_layers" on "opsworks" with:
    """
    { stack_id: 'fake_stack' }
    """
    Then I expect the response error code to be "ResourceNotFoundException"
    And I expect the response error message to include:
    """
    Unable to find stack with ID fake_stack
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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