summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2021-09-01 12:08:38 +0300
committerGitHub <noreply@github.com>2021-09-01 12:08:38 +0300
commit879584b7a359cfd7eeb008b41ba9ca9be16e6633 (patch)
treea0325d4ebdd7d266427d77025bd5fb0c42e3b968 /tests
parent9f64c56e0f6994df0609a803e613a055ee57a7cd (diff)
downloadredis-py-879584b7a359cfd7eeb008b41ba9ca9be16e6633.tar.gz
Support for QUIT (#1557)
Part of #1546
Diffstat (limited to 'tests')
-rw-r--r--tests/test_commands.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index 1a34712..d77a01c 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -478,6 +478,9 @@ class TestRedisCommands:
def test_ping(self, r):
assert r.ping()
+ def test_quit(self, r):
+ assert r.quit()
+
def test_slowlog_get(self, r, slowlog):
assert r.slowlog_reset()
unicode_string = chr(3456) + 'abcd' + chr(3421)