mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-07-02 02:30:43 +00:00
Add all dependency of go-getter
This commit is contained in:
16
vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/client.go
generated
vendored
Normal file
16
vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/client.go
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
// +build integration
|
||||
|
||||
//Package sqs provides gucumber integration tests support.
|
||||
package sqs
|
||||
|
||||
import (
|
||||
"github.com/aws/aws-sdk-go/awstesting/integration/smoke"
|
||||
"github.com/aws/aws-sdk-go/service/sqs"
|
||||
"github.com/gucumber/gucumber"
|
||||
)
|
||||
|
||||
func init() {
|
||||
gucumber.Before("@sqs", func() {
|
||||
gucumber.World["client"] = sqs.New(smoke.Session)
|
||||
})
|
||||
}
|
||||
16
vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/sqs.feature
generated
vendored
Normal file
16
vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/sqs.feature
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
# language: en
|
||||
@sqs @client
|
||||
Feature: Amazon Simple Queue Service
|
||||
|
||||
Scenario: Making a request
|
||||
When I call the "ListQueues" API
|
||||
Then the value at "QueueUrls" should be a list
|
||||
|
||||
Scenario: Handling errors
|
||||
When I attempt to call the "GetQueueUrl" API with:
|
||||
| QueueName | fake_queue |
|
||||
Then I expect the response error code to be "AWS.SimpleQueueService.NonExistentQueue"
|
||||
And I expect the response error message to include:
|
||||
"""
|
||||
The specified queue does not exist for this wsdl version.
|
||||
"""
|
||||
Reference in New Issue
Block a user