aboutsummaryrefslogtreecommitdiffstats
path: root/clients/common/common_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'clients/common/common_test.go')
-rw-r--r--clients/common/common_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/clients/common/common_test.go b/clients/common/common_test.go
index 80934fc..d2d3696 100644
--- a/clients/common/common_test.go
+++ b/clients/common/common_test.go
@@ -22,6 +22,12 @@ func (s *SuiteCommon) TestNewEndpoint(c *C) {
c.Assert(e.String(), Equals, "ssh://git@github.com/user/repository.git")
}
+func (s *SuiteCommon) TestNewEndpointSCPLike(c *C) {
+ e, err := NewEndpoint("git@github.com:user/repository.git")
+ c.Assert(err, IsNil)
+ c.Assert(e.String(), Equals, "ssh://git@github.com/user/repository.git")
+}
+
func (s *SuiteCommon) TestNewEndpointWrongForgat(c *C) {
e, err := NewEndpoint("foo")
c.Assert(err, Not(IsNil))