summaryrefslogtreecommitdiff
path: root/tests/test_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_commands.py')
-rw-r--r--tests/test_commands.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index a2d9335..6ee204b 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -71,6 +71,10 @@ class TestRedisCommands:
r["a"]
# SERVER INFORMATION
+ def test_auth_not_implemented(self, r):
+ with pytest.raises(NotImplementedError):
+ r.auth()
+
@skip_if_server_version_lt("6.0.0")
def test_acl_cat_no_category(self, r):
categories = r.acl_cat()