func (s *AmazonServerSuite) SetUpSuite(c *gocheck.C) { if !*amazon { c.Skip("AmazonServerSuite tests not enabled") } s.srv.SetUp(c) s.ServerTests.elb = elb.New(s.srv.auth, aws.USEast) }
func (s *AmazonClientSuite) SetUpSuite(c *gocheck.C) { if !*amazon { c.Skip("AmazonClientSuite tests not enabled") } s.srv.SetUp(c) s.elb = elb.New(s.srv.auth, aws.USEast) s.ec2 = ec2.New(s.srv.auth, aws.USEast) }
func (s *LocalServerSuite) SetUpSuite(c *gocheck.C) { s.srv.SetUp(c) s.ServerTests.elb = elb.New(s.srv.auth, s.srv.region) s.clientTests.elb = elb.New(s.srv.auth, s.srv.region) }
func (s *S) SetUpSuite(c *gocheck.C) { s.HTTPSuite.SetUpSuite(c) auth := aws.Auth{AccessKey: "abc", SecretKey: "123"} s.elb = elb.New(auth, aws.Region{ELBEndpoint: testServer.URL}) }