(t *testing.T)
| 73 | } |
| 74 | |
| 75 | func TestParseRemotePath_EmptyString(t *testing.T) { |
| 76 | host, path, ok := parseRemotePath("") |
| 77 | assert.False(t, ok) |
| 78 | assert.Equal(t, "", host) |
| 79 | assert.Equal(t, "", path) |
| 80 | } |
| 81 | |
| 82 | func TestParseRemotePath_NoColon(t *testing.T) { |
| 83 | host, path, ok := parseRemotePath("just-a-hostname") |
nothing calls this directly
no test coverage detected