(t *testing.T)
| 27 | } |
| 28 | |
| 29 | func TestDeleteUser(t *testing.T) { |
| 30 | ctx := context.Background() |
| 31 | client, requester := newClient(t) |
| 32 | |
| 33 | _, err := client.Users().Delete(ctx, "id1") |
| 34 | require.NoError(t, err) |
| 35 | testRequest(t, requester.req, http.MethodDelete, "https://api.stream-io-api.com/api/v1.0/user/id1/?api_key=key", "") |
| 36 | } |
| 37 | |
| 38 | func TestAddUser(t *testing.T) { |
| 39 | ctx := context.Background() |
nothing calls this directly
no test coverage detected