Sha256: 559c9b02109d15d5525412e9f0a96700eb19472c12cc03dcc4c1506f7130ccc2

Contents?: true

Size: 498 Bytes

Versions: 4

Compression:

Stored size: 498 Bytes

Contents

# language: en
@emr @client
Feature: Amazon EMR

  Scenario: Making a basic request
    When I call "describe_job_flows" on "emr"
    Then the response "job_flows" should be an array

  Scenario: Error handling
    Given I call "describe_job_flows" on "emr" with:
    """
    { job_flow_ids: ['fake_job_flow'] }
    """
    Then I expect the response error code to be "ValidationException"
    And I expect the response error message to include:
    """
    Specified job flow ID not valid
    """

Version data entries

4 entries across 4 versions & 1 rubygems

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