1# language: en
2@smoke @codepipeline
3Feature: Amazon CodePipeline
4
5  Scenario: Making a request
6    When I call the "ListPipelines" API
7    Then the value at "pipelines" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "GetPipeline" API with:
11      | name | fake-pipeline |
12    Then I expect the response error code to be "PipelineNotFoundException"
13