Sha256: 3c38f22290ae3462c2cea8da9db78ea41d9cc946c98a076ecb34ac7107ca45dd

Contents?: true

Size: 583 Bytes

Versions: 4

Compression:

Stored size: 583 Bytes

Contents

# language: en
@cloudwatch @client
Feature: Amazon CloudWatch

  Scenario: Making a basic request
    When I call "list_metrics" on "cloudwatch" with:
    """
    { namespace: "AWS/EC2" }
    """
    Then the response "metrics" should be an array

  Scenario: Error handling
    Given I call "set_alarm_state" on "cloudwatch" with:
    """
    { alarm_name:'abc', state_value:'mno', state_reason:'xyz' }
    """
    Then I expect the response error code to be "ValidationError"
    And I expect the response error message to include:
    """
    failed to satisfy constraint
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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