(path *api.Path)
| 21 | ) |
| 22 | |
| 23 | func mustApi2apiutilPath(path *api.Path) *apiutil.Path { |
| 24 | p, err := api2apiutilPath(path) |
| 25 | if err != nil { |
| 26 | panic(fmt.Sprintf("failed to convert api.Path to apiutil.Path: %v", err)) |
| 27 | } |
| 28 | return p |
| 29 | } |
| 30 | |
| 31 | func TestParseHost(t *testing.T) { |
| 32 | tsts := []struct { |
no test coverage detected
searching dependent graphs…