Display message when logging into existing account

This commit is contained in:
William Martin 2023-11-28 13:25:45 +01:00
parent a9acece7dd
commit 1bf6023164
6 changed files with 101 additions and 1 deletions

View file

@ -25,6 +25,10 @@ func (c tinyConfig) Login(host, username, token, gitProtocol string, encrypt boo
return false, nil
}
func (c tinyConfig) UsersForHost(hostname string) ([]string, error) {
return nil, nil
}
func TestLogin_ssh(t *testing.T) {
dir := t.TempDir()
ios, _, stdout, stderr := iostreams.Test()