diff options
author | andymccurdy <andy@andymccurdy.com> | 2010-02-16 02:30:13 -0800 |
---|---|---|
committer | andymccurdy <andy@andymccurdy.com> | 2010-02-16 02:30:13 -0800 |
commit | 3b05b78c0af9ed92131e797d666f0a1e9d20ff92 (patch) | |
tree | c9728eca411d3c276fa0a25fa721f37eb42e28db /tests/server_commands.py | |
parent | 175c16108459444332c5937245e2567564970f67 (diff) | |
download | redis-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.py | 2 |
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) |