(t *testing.T)
| 19 | } |
| 20 | |
| 21 | func TestDeleteReaction(t *testing.T) { |
| 22 | ctx := context.Background() |
| 23 | client, requester := newClient(t) |
| 24 | _, err := client.Reactions().Delete(ctx, "id1") |
| 25 | require.NoError(t, err) |
| 26 | testRequest(t, requester.req, http.MethodDelete, "https://api.stream-io-api.com/api/v1.0/reaction/id1/?api_key=key", "") |
| 27 | } |
| 28 | |
| 29 | func TestAddReaction(t *testing.T) { |
| 30 | ctx := context.Background() |
nothing calls this directly
no test coverage detected