(t *testing.T)
| 607 | } |
| 608 | |
| 609 | func TestGistsService_Edit_invalidID(t *testing.T) { |
| 610 | t.Parallel() |
| 611 | client, _, _ := setup(t) |
| 612 | |
| 613 | ctx := t.Context() |
| 614 | _, _, err := client.Gists.Edit(ctx, "%", nil) |
| 615 | testURLParseError(t, err) |
| 616 | } |
| 617 | |
| 618 | func TestGistsService_ListCommits(t *testing.T) { |
| 619 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…