diff options
Diffstat (limited to 'tests/server_commands.py')
-rw-r--r-- | tests/server_commands.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/server_commands.py b/tests/server_commands.py index 771e0b3..819bedf 100644 --- a/tests/server_commands.py +++ b/tests/server_commands.py @@ -81,6 +81,9 @@ class ServerCommandsTestCase(unittest.TestCase): self.assert_(self.client.config_set('dbfilename', rdbname)) self.assertEquals(self.client.config_get()['dbfilename'], rdbname) + def test_echo(self): + self.assertEquals(self.client.echo('foo bar'), 'foo bar') + def test_info(self): self.client['a'] = 'foo' self.client['b'] = 'bar' |