| 12345678910111213141516171819 |
- // +build integration
- //Package ecs provides gucumber integration tests support.
- package ecs
- import (
- "github.com/aws/aws-sdk-go/aws"
- "github.com/aws/aws-sdk-go/awstesting/integration/smoke"
- "github.com/aws/aws-sdk-go/service/ecs"
- "github.com/gucumber/gucumber"
- )
- func init() {
- gucumber.Before("@ecs", func() {
- // FIXME remove custom region
- gucumber.World["client"] = ecs.New(smoke.Session,
- aws.NewConfig().WithRegion("us-west-2"))
- })
- }
|