(t *testing.T)
| 746 | } |
| 747 | |
| 748 | func TestGistsService_Delete_invalidID(t *testing.T) { |
| 749 | t.Parallel() |
| 750 | client, _, _ := setup(t) |
| 751 | |
| 752 | ctx := t.Context() |
| 753 | _, err := client.Gists.Delete(ctx, "%") |
| 754 | testURLParseError(t, err) |
| 755 | } |
| 756 | |
| 757 | func TestGistsService_Star(t *testing.T) { |
| 758 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…