cloudfront.feature 529 B

1234567891011121314151617
  1. # language: en
  2. @cloudfront @client
  3. Feature: Amazon CloudFront
  4. Scenario: Making a basic request
  5. When I call the "ListDistributions" API with:
  6. | MaxItems | 1 |
  7. Then the value at "DistributionList.Items" should be a list
  8. Scenario: Error handling
  9. When I attempt to call the "GetDistribution" API with:
  10. | Id | fake-id |
  11. Then I expect the response error code to be "NoSuchDistribution"
  12. And I expect the response error message to include:
  13. """
  14. The specified distribution does not exist.
  15. """