1// +build integration
2
3//Package ecs provides gucumber integration tests support.
4package ecs
5
6import (
7	"github.com/aws/aws-sdk-go/aws"
8	"github.com/aws/aws-sdk-go/awstesting/integration/smoke"
9	"github.com/aws/aws-sdk-go/service/ecs"
10	"github.com/gucumber/gucumber"
11)
12
13func init() {
14	gucumber.Before("@ecs", func() {
15		// FIXME remove custom region
16		gucumber.World["client"] = ecs.New(smoke.Session,
17			aws.NewConfig().WithRegion("us-west-2"))
18	})
19}
20