(t *testing.T)
| 780 | } |
| 781 | |
| 782 | func TestGistsService_Star_invalidID(t *testing.T) { |
| 783 | t.Parallel() |
| 784 | client, _, _ := setup(t) |
| 785 | |
| 786 | ctx := t.Context() |
| 787 | _, err := client.Gists.Star(ctx, "%") |
| 788 | testURLParseError(t, err) |
| 789 | } |
| 790 | |
| 791 | func TestGistsService_Unstar(t *testing.T) { |
| 792 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…