(t *testing.T)
| 172 | } |
| 173 | |
| 174 | func TestOrganizationsService_List_invalidUser(t *testing.T) { |
| 175 | t.Parallel() |
| 176 | client, _, _ := setup(t) |
| 177 | |
| 178 | ctx := t.Context() |
| 179 | _, _, err := client.Organizations.List(ctx, "%", nil) |
| 180 | testURLParseError(t, err) |
| 181 | } |
| 182 | |
| 183 | func TestOrganizationsService_Get(t *testing.T) { |
| 184 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…