lambda.feature 463 B

12345678910111213141516
  1. # language: en
  2. @lambda @client
  3. Feature: Amazon Lambda
  4. Scenario: Making a request
  5. When I call the "ListFunctions" API
  6. Then the value at "Functions" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "Invoke" API with:
  9. | FunctionName | bogus-function |
  10. Then I expect the response error code to be "ResourceNotFoundException"
  11. And I expect the response error message to include:
  12. """
  13. Function not found
  14. """