client.go 344 B

12345678910111213141516
  1. // +build integration
  2. //Package sns provides gucumber integration tests support.
  3. package sns
  4. import (
  5. "github.com/aws/aws-sdk-go/awstesting/integration/smoke"
  6. "github.com/aws/aws-sdk-go/service/sns"
  7. "github.com/gucumber/gucumber"
  8. )
  9. func init() {
  10. gucumber.Before("@sns", func() {
  11. gucumber.World["client"] = sns.New(smoke.Session)
  12. })
  13. }