1
0
Fork 0
iredis/tests/cli_tests/test_self_implemented_command.py
Daniel Baumann 031879240c
Adding upstream version 1.9.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-09 16:57:44 +01:00

14 lines
240 B
Python

"""
check ascii table:
http://ascii-table.com/ansi-escape-sequences.php
"""
def test_clear(cli):
cli.sendline("clear")
cli.expect("\\[2J") # clear screen
def test_exirt(cli):
cli.sendline("EXIT")
cli.expect("Goodbye!")