1# language: en
2@smoke @datapipeline
3Feature: AWS Data Pipeline
4
5  Scenario: Making a request
6    When I call the "ListPipelines" API
7    Then the response should contain a "pipelineIdList"
8
9  Scenario: Handling errors
10    When I attempt to call the "GetPipelineDefinition" API with:
11      | pipelineId | fake-id |
12    Then I expect the response error code to be "PipelineNotFoundException"
13