(ref string)
| 2334 | } |
| 2335 | |
| 2336 | func mustParseQualifiedHeadRef(ref string) shared.QualifiedHeadRef { |
| 2337 | parsed, err := shared.ParseQualifiedHeadRef(ref) |
| 2338 | if err != nil { |
| 2339 | panic(err) |
| 2340 | } |
| 2341 | return parsed |
| 2342 | } |
| 2343 | |
| 2344 | func Test_generateCompareURL(t *testing.T) { |
| 2345 | tests := []struct { |
no test coverage detected