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