(t *testing.T)
| 163 | } |
| 164 | |
| 165 | func TestGitService_GetCommit_invalidOwner(t *testing.T) { |
| 166 | t.Parallel() |
| 167 | client, _, _ := setup(t) |
| 168 | |
| 169 | ctx := t.Context() |
| 170 | _, _, err := client.Git.GetCommit(ctx, "%", "%", "%") |
| 171 | testURLParseError(t, err) |
| 172 | } |
| 173 | |
| 174 | func TestGitService_CreateCommit(t *testing.T) { |
| 175 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…