diff --git a/connection/ssh_test.go b/connection/ssh_test.go index 24abeef..672522c 100644 --- a/connection/ssh_test.go +++ b/connection/ssh_test.go @@ -5,25 +5,6 @@ import ( ) func TestNewSSHClient(t *testing.T) { - // t.Run("ValidConfig", func(t *testing.T) { - - // config := &SSHConfig{ - // SSHHost: os.Getenv("GOWINDOWS_TEST_SSH_HOST"), - // SSHPort: 22, - // SSHUsername: os.Getenv("GOWINDOWS_TEST_SSH_USERNAME"), - // SSHPassword: os.Getenv("GOWINDOWS_TEST_SSH_PASSWORD"), - // } - - // client, err := newSSHClient(config) - // if err != nil { - // t.Errorf("Expected no error, but got %v", err) - // } - // if client == nil { - // t.Error("Expected a non-nil SSH client, but got nil") - // } - - // }) - t.Run("InvalidConfig", func(t *testing.T) { // Test case with missing required fields config := &SSHConfig{}