Sha256: 57ae83185d402b6095e0223c92199910499cb0403b362e2522a09fe9c925185a

Contents?: true

Size: 561 Bytes

Versions: 4

Compression:

Stored size: 561 Bytes

Contents

# language: en
@swf @client
Feature: Amazon Simple Workflow Service

  Scenario: Making a basic request
    When I call "list_domains" on "swf" with:
    """
    { registration_status: 'REGISTERED' }
    """
    Then the response "domain_infos" should be an array

  Scenario: Error handling
    Given I call "describe_domain" on "swf" with:
    """
    { name: 'fake_domain' }
    """
    Then I expect the response error code to be "UnknownResourceFault"
    And I expect the response error message to include:
    """
    Unknown domain: fake_domain
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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