(t *testing.T)
| 304 | } |
| 305 | |
| 306 | func TestGistsService_List_invalidUser(t *testing.T) { |
| 307 | t.Parallel() |
| 308 | client, _, _ := setup(t) |
| 309 | |
| 310 | ctx := t.Context() |
| 311 | _, _, err := client.Gists.List(ctx, "%", nil) |
| 312 | testURLParseError(t, err) |
| 313 | } |
| 314 | |
| 315 | func TestGistsService_ListAll(t *testing.T) { |
| 316 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…