(t *testing.T)
| 145 | } |
| 146 | |
| 147 | func TestFormatRemotePath_DomainName(t *testing.T) { |
| 148 | result := formatRemotePath("example.com", "/remote/path") |
| 149 | assert.Equal(t, "example.com:/remote/path", result) |
| 150 | } |
| 151 | |
| 152 | func TestFormatRemotePath_EmptyHost(t *testing.T) { |
| 153 | result := formatRemotePath("", "/path") |
nothing calls this directly
no test coverage detected