(decoded_r: redis.Redis)
| 189 | |
| 190 | @pytest.mark.redismod |
| 191 | async def test_madd(decoded_r: redis.Redis): |
| 192 | await decoded_r.ts().create("a") |
| 193 | assert [1, 2, 3] == await decoded_r.ts().madd( |
| 194 | [("a", 1, 5), ("a", 2, 10), ("a", 3, 15)] |
| 195 | ) |
| 196 | |
| 197 | |
| 198 | @pytest.mark.redismod |