1# language: en
2@elastictranscoder @client
3Feature: Amazon Elastic Transcoder
4
5  Scenario: Making a request
6    When I call the "ListPresets" API
7    Then the value at "Presets" should be a list
8
9  Scenario: Handling errors
10    When I attempt to call the "ReadJob" API with:
11    | Id | fake_job |
12    Then I expect the response error code to be "ValidationException"
13    And I expect the response error message to include:
14    """
15    Value 'fake_job' at 'id' failed to satisfy constraint
16    """
17