(t *testing.T)
| 286 | } |
| 287 | |
| 288 | func TestIssuesService_Get_invalidOwner(t *testing.T) { |
| 289 | t.Parallel() |
| 290 | client, _, _ := setup(t) |
| 291 | |
| 292 | ctx := t.Context() |
| 293 | _, _, err := client.Issues.Get(ctx, "%", "r", 1) |
| 294 | testURLParseError(t, err) |
| 295 | } |
| 296 | |
| 297 | func TestIssuesService_Create(t *testing.T) { |
| 298 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…