1# language: en
2@smoke @ecr
3Feature: Amazon ECR
4
5  I want to use Amazon ECR
6
7  Scenario: Making a request
8    When I call the "DescribeRepositories" API
9    Then the value at "repositories" should be a list
10
11  Scenario: Handling errors
12    When I attempt to call the "ListImages" API with:
13      | repositoryName | not-a-real-repository |
14    Then I expect the response error code to be "RepositoryNotFoundException"
15