(t *testing.T)
| 327 | } |
| 328 | |
| 329 | func TestGitService_CreateTree_invalidOwner(t *testing.T) { |
| 330 | t.Parallel() |
| 331 | client, _, _ := setup(t) |
| 332 | |
| 333 | ctx := t.Context() |
| 334 | _, _, err := client.Git.CreateTree(ctx, "%", "%", "", nil) |
| 335 | testURLParseError(t, err) |
| 336 | } |
| 337 | |
| 338 | func TestTree_Marshal(t *testing.T) { |
| 339 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…