(t *testing.T)
| 122 | } |
| 123 | |
| 124 | func TestRepositoriesService_ListByUser_invalidUser(t *testing.T) { |
| 125 | t.Parallel() |
| 126 | client, _, _ := setup(t) |
| 127 | |
| 128 | ctx := t.Context() |
| 129 | _, _, err := client.Repositories.ListByUser(ctx, "%", nil) |
| 130 | testURLParseError(t, err) |
| 131 | } |
| 132 | |
| 133 | func TestRepositoriesService_ListByOrg(t *testing.T) { |
| 134 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…