diff options
Diffstat (limited to 'clients/http/common_test.go')
-rw-r--r-- | clients/http/common_test.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clients/http/common_test.go b/clients/http/common_test.go index 7bd9708..d3e2c9d 100644 --- a/clients/http/common_test.go +++ b/clients/http/common_test.go @@ -13,6 +13,13 @@ type SuiteCommon struct{} var _ = Suite(&SuiteCommon{}) +func (s *SuiteCommon) TestNewBasicAuth(c *C) { + a := NewBasicAuth("foo", "qux") + + c.Assert(a.Name(), Equals, "http-basic-auth") + c.Assert(a.String(), Equals, "http-basic-auth - foo:*******") +} + func (s *SuiteCommon) TestNewHTTPError200(c *C) { res := &http.Response{StatusCode: 200} res.StatusCode = 200 |