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.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index 33f78d5..0815427 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -54,6 +54,9 @@ class TestResponseCallbacks(object):
r['a'] = 'foo'
assert r['a'] == 'static'
+ def test_case_insensitive_command_names(self, r):
+ assert r.response_callbacks['del'] == r.response_callbacks['DEL']
+
class TestRedisCommands(object):