(t *testing.T)
| 150 | } |
| 151 | |
| 152 | func TestFormatRemotePath_EmptyHost(t *testing.T) { |
| 153 | result := formatRemotePath("", "/path") |
| 154 | assert.Equal(t, ":/path", result) |
| 155 | } |
| 156 | |
| 157 | func TestFormatRemotePath_EmptyPath(t *testing.T) { |
| 158 | result := formatRemotePath("host", "") |
nothing calls this directly
no test coverage detected