| 12345678910111213141516 |
- // +build integration
- //Package swf provides gucumber integration tests support.
- package swf
- import (
- "github.com/aws/aws-sdk-go/awstesting/integration/smoke"
- "github.com/aws/aws-sdk-go/service/swf"
- "github.com/gucumber/gucumber"
- )
- func init() {
- gucumber.Before("@swf", func() {
- gucumber.World["client"] = swf.New(smoke.Session)
- })
- }
|