(t *testing.T)
| 155 | } |
| 156 | |
| 157 | func TestFormatRemotePath_EmptyPath(t *testing.T) { |
| 158 | result := formatRemotePath("host", "") |
| 159 | assert.Equal(t, "host:", result) |
| 160 | } |
| 161 | |
| 162 | // Table-driven test for parseRemotePath |
| 163 | func TestParseRemotePath_Table(t *testing.T) { |
nothing calls this directly
no test coverage detected