client.go 389 B

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