Adding upstream version 1.9.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
031879240c
commit
c0bb48d3f7
131 changed files with 3811 additions and 826 deletions
|
@ -10,6 +10,14 @@ def test_start_on_connection_error():
|
|||
cli.close()
|
||||
|
||||
|
||||
def test_start_with_client_name():
|
||||
cli = pexpect.spawn("iredis --client_name custom_name", timeout=2)
|
||||
cli.expect("iredis")
|
||||
cli.sendline("CLIENT GETNAME")
|
||||
cli.expect("custom_name")
|
||||
cli.close()
|
||||
|
||||
|
||||
def test_short_help_option(config):
|
||||
c = pexpect.spawn("iredis -h", timeout=2)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue