(t *testing.T)
| 490 | } |
| 491 | |
| 492 | func TestGitService_CreateCommit_invalidOwner(t *testing.T) { |
| 493 | t.Parallel() |
| 494 | client, _, _ := setup(t) |
| 495 | |
| 496 | ctx := t.Context() |
| 497 | _, _, err := client.Git.CreateCommit(ctx, "%", "%", Commit{}, nil) |
| 498 | testURLParseError(t, err) |
| 499 | } |
| 500 | |
| 501 | func TestSignatureVerification_Marshal(t *testing.T) { |
| 502 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…