(client)
| 183 | |
| 184 | @pytest.mark.redismod |
| 185 | def test_nonascii_setgetdelete(client): |
| 186 | assert client.json().set("notascii", Path.root_path(), "hyvää-élève") |
| 187 | assert client.json().get("notascii", no_escape=True) == "hyvää-élève" |
| 188 | assert 1 == client.json().delete("notascii") |
| 189 | assert client.exists("notascii") == 0 |
| 190 | |
| 191 | |
| 192 | @pytest.mark.redismod |