Sha256: 1dd6cbd2c82128b6ed68294bf05c211655add378b3ede024bd6c2130582ec266

Contents?: true

Size: 547 Bytes

Versions: 4

Compression:

Stored size: 547 Bytes

Contents

# language: en
@datapipeline @client
Feature: AWS Data Pipeline

  Scenario: Making a basic request
    When I call "list_pipelines" on "datapipeline"
    Then the response "pipeline_id_list" should be an array

  Scenario: Error handling
    Given I call "describe_pipelines" on "datapipeline" with:
    """
    { pipeline_ids: ['fake_pipeline'] }
    """
    Then I expect the response error code to be "PipelineNotFoundException"
    And I expect the response error message to include:
    """
    fake_pipeline pipeline does not exist
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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