dynamodb.feature 548 B

12345678910111213141516171819
  1. # language: en
  2. @dynamodb @client
  3. Feature: Amazon DynamoDB
  4. Scenario: Making a request
  5. When I call the "ListTables" API with JSON:
  6. """
  7. {"Limit": 1}
  8. """
  9. Then the value at "TableNames" should be a list
  10. Scenario: Handling errors
  11. When I attempt to call the "DescribeTable" API with:
  12. | TableName | fake-table |
  13. Then I expect the response error code to be "ResourceNotFoundException"
  14. And I expect the response error message to include:
  15. """
  16. Requested resource not found: Table: fake-table not found
  17. """