Sha256: ea7e8dd8df21001457d804fa929bc47d9121fe844cc26deaac50f575e1482cc6

Contents?: true

Size: 547 Bytes

Versions: 4

Compression:

Stored size: 547 Bytes

Contents

# language: en
@sns @client
Feature: Amazon Simple Notification Service

  Scenario: Making a basic request
    When I call "list_topics" on "sns"
    Then the response "topics" should be an array

  Scenario: Error handling
    Given I call "publish" on "sns" with:
    """
    { message: 'hello', topic_arn: 'fake_topic' }
    """
    Then I expect the response error code to be "InvalidParameter"
    And I expect the response error message to include:
    """
    Invalid parameter: TopicArn Reason: fake_topic does not start with arn
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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