1# language: en
2@smoke @firehose
3Feature: AWS Kinesis Firehose
4
5  Scenario: Making a request
6    When I call the "ListDeliveryStreams" API
7    Then the value at "DeliveryStreamNames" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "DescribeDeliveryStream" API with:
11      | DeliveryStreamName | bogus-stream-name |
12    Then I expect the response error code to be "ResourceNotFoundException"
13