(t *testing.T)
| 889 | } |
| 890 | |
| 891 | func TestGistsService_IsStarred_invalidID(t *testing.T) { |
| 892 | t.Parallel() |
| 893 | client, _, _ := setup(t) |
| 894 | |
| 895 | ctx := t.Context() |
| 896 | _, _, err := client.Gists.IsStarred(ctx, "%") |
| 897 | testURLParseError(t, err) |
| 898 | } |
| 899 | |
| 900 | func TestGistsService_Fork(t *testing.T) { |
| 901 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…