mirror of
https://github.com/Luzifer/cloudkeys-go.git
synced 2024-11-14 08:52:44 +00:00
9c6e3c89a5
* fix js scoping issue * add external libraries (they were offline too often) * new compiled scripts and css * new fixes in the binary * vendor update * change js source * remove needless variable * removed more needless variables
34 lines
843 B
Go
34 lines
843 B
Go
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
|
|
|
|
// +build go1.10,integration
|
|
|
|
package rekognition_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
|
"github.com/aws/aws-sdk-go/aws/request"
|
|
"github.com/aws/aws-sdk-go/awstesting/integration"
|
|
"github.com/aws/aws-sdk-go/service/rekognition"
|
|
)
|
|
|
|
var _ aws.Config
|
|
var _ awserr.Error
|
|
var _ request.Request
|
|
|
|
func TestInteg_00_ListCollections(t *testing.T) {
|
|
ctx, cancelFn := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer cancelFn()
|
|
|
|
sess := integration.SessionWithDefaultRegion("us-west-2")
|
|
svc := rekognition.New(sess)
|
|
params := &rekognition.ListCollectionsInput{}
|
|
_, err := svc.ListCollectionsWithContext(ctx, params)
|
|
if err != nil {
|
|
t.Errorf("expect no error, got %v", err)
|
|
}
|
|
}
|