summaryrefslogtreecommitdiff
path: root/tests/server_commands.py
diff options
context:
space:
mode:
authorandymccurdy <andy@andymccurdy.com>2010-02-16 02:30:13 -0800
committerandymccurdy <andy@andymccurdy.com>2010-02-16 02:30:13 -0800
commit3b05b78c0af9ed92131e797d666f0a1e9d20ff92 (patch)
treec9728eca411d3c276fa0a25fa721f37eb42e28db /tests/server_commands.py
parent175c16108459444332c5937245e2567564970f67 (diff)
downloadredis-py-3b05b78c0af9ed92131e797d666f0a1e9d20ff92.tar.gz
- connection objects now store authentication credentials so that reconnect works as expected.
- Connection.connect now calls back into the redis instance class to send the auth and select commands to the server. this does not yet work with pipelines, which will be addressed shortly. - Added very basic tests for the connection pool and pipeline
Diffstat (limited to 'tests/server_commands.py')
-rw-r--r--tests/server_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server_commands.py b/tests/server_commands.py
index 5a0d6f0..401348a 100644
--- a/tests/server_commands.py
+++ b/tests/server_commands.py
@@ -2,7 +2,7 @@ import redis
import unittest
import datetime
-class ServerCommands(unittest.TestCase):
+class ServerCommandsTestCase(unittest.TestCase):
def setUp(self):
self.client = redis.Redis(host='localhost', port=6379, db=9)