python-botocore/tests/acceptance/features/smoke/lambda/lambda.feature
2015-11-24 20:34:53 +09:00

17 lines
455 B
Gherkin

# language: en
@lambda
Feature: Amazon Lambda
Scenario: Making a request
When I call the "ListFunctions" API
Then the value at "Functions" should be a list
Scenario: Handling errors
When I attempt to call the "Invoke" API with:
| FunctionName | bogus-function |
Then I expect the response error code to be "ResourceNotFoundException"
And I expect the response error message to include:
"""
Function not found
"""