(client)
| 180 | |
| 181 | @pytest.mark.redismod |
| 182 | def test_madd_missing_timeseries(client): |
| 183 | response = client.ts().madd([(class="st">"a", 1, 5), (class="st">"a", 2, 10)]) |
| 184 | assert isinstance(response, list) |
| 185 | assert len(response) == 2 |
| 186 | assert isinstance(response[0], redis.ResponseError) |
| 187 | assert isinstance(response[1], redis.ResponseError) |
| 188 | |
| 189 | |
| 190 | @pytest.mark.redismod |