rich/tests/test_control.py

8 lines
262 B
Python

from rich.control import strip_control_codes
def test_strip_control_codes():
assert strip_control_codes("") == ""
assert strip_control_codes("foo\rbar") == "foobar"
assert strip_control_codes("Fear is the mind killer") == "Fear is the mind killer"