1# language: en 2@smoke @acm 3Feature: AWS Certificate Manager 4 5 Scenario: Making a request 6 When I call the "ListCertificates" API 7 Then the value at "CertificateSummaryList" should be a list 8 9 Scenario: Handling errors 10 When I attempt to call the "GetCertificate" API with: 11 | CertificateArn | arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 | 12 Then I expect the response error code to be "ResourceNotFoundException" 13