(ref string)
| 2754 | } |
| 2755 | |
| 2756 | func mustParseQualifiedHeadRef(ref string) shared.QualifiedHeadRef { |
| 2757 | parsed, err := shared.ParseQualifiedHeadRef(ref) |
| 2758 | if err != nil { |
| 2759 | panic(err) |
| 2760 | } |
| 2761 | return parsed |
| 2762 | } |
| 2763 | |
| 2764 | func Test_generateCompareURL(t *testing.T) { |
| 2765 | tests := []struct { |
no test coverage detected