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