client.go 409 B

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