(t *testing.T)
| 265 | } |
| 266 | |
| 267 | func TestDeleteReactionWithUserID(t *testing.T) { |
| 268 | ctx := context.Background() |
| 269 | client, requester := newClient(t) |
| 270 | _, err := client.Reactions().Delete(ctx, "id1", stream.WithReactionUserID("user1")) |
| 271 | require.NoError(t, err) |
| 272 | testRequest(t, requester.req, http.MethodDelete, "https://api.stream-io-api.com/api/v1.0/reaction/id1/?api_key=key&user_id=user1", "") |
| 273 | } |
| 274 | |
| 275 | func TestSoftDeleteReactionWithUserID(t *testing.T) { |
| 276 | ctx := context.Background() |
nothing calls this directly
no test coverage detected