1# language: en
2@smoke @cloudwatchlogs @logs
3Feature: Amazon CloudWatch Logs
4
5  Scenario: Making a request
6    When I call the "DescribeLogGroups" API
7    Then the value at "logGroups" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "GetLogEvents" API with:
11      | logGroupName  | fakegroup  |
12      | logStreamName | fakestream |
13    Then I expect the response error code to be "ResourceNotFoundException"
14