diff options
Diffstat (limited to 'remote_test.go')
-rw-r--r-- | remote_test.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/remote_test.go b/remote_test.go index acf646f..c3e86df 100644 --- a/remote_test.go +++ b/remote_test.go @@ -44,6 +44,13 @@ func (s *RemoteSuite) TestnewRemoteInvalidEndpoint(c *C) { c.Assert(err, NotNil) } +func (s *RemoteSuite) TestnewRemoteNonExistentEndpoint(c *C) { + r := newRemote(nil, nil, &config.RemoteConfig{Name: "foo", URL: "ssh://non-existent/foo.git"}) + + err := r.Connect() + c.Assert(err, NotNil) +} + func (s *RemoteSuite) TestnewRemoteInvalidSchemaEndpoint(c *C) { r := newRemote(nil, nil, &config.RemoteConfig{Name: "foo", URL: "qux://foo"}) |