devicefarm.feature 515 B

12345678910111213141516
  1. # language: en
  2. @devicefarm @client
  3. Feature: AWS Device Farm
  4. Scenario: Making a request
  5. When I call the "ListDevices" API
  6. Then the value at "devices" should be a list
  7. Scenario: Handling errors
  8. When I attempt to call the "GetDevice" API with:
  9. | arn | arn:aws:devicefarm:us-west-2::device:000000000000000000000000fake-arn |
  10. Then I expect the response error code to be "NotFoundException"
  11. And I expect the response error message to include:
  12. """
  13. No device was found for arn
  14. """