(t *testing.T)
| 814 | } |
| 815 | |
| 816 | func TestGistsService_Unstar_invalidID(t *testing.T) { |
| 817 | t.Parallel() |
| 818 | client, _, _ := setup(t) |
| 819 | |
| 820 | ctx := t.Context() |
| 821 | _, err := client.Gists.Unstar(ctx, "%") |
| 822 | testURLParseError(t, err) |
| 823 | } |
| 824 | |
| 825 | func TestGistsService_IsStarred_hasStar(t *testing.T) { |
| 826 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…