summaryrefslogtreecommitdiffstats
path: root/tests/test_rich_print.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_rich_print.py')
-rw-r--r--tests/test_rich_print.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/test_rich_print.py b/tests/test_rich_print.py
new file mode 100644
index 0000000..18467c6
--- /dev/null
+++ b/tests/test_rich_print.py
@@ -0,0 +1,42 @@
+import io
+
+import rich
+from rich.console import Console
+
+
+def test_get_console():
+ console = rich.get_console()
+ assert isinstance(console, Console)
+
+
+def test_reconfigure_console():
+ rich.reconfigure(width=100)
+ assert rich.get_console().width == 100
+
+
+def test_rich_print():
+ console = rich.get_console()
+ output = io.StringIO()
+ backup_file = console.file
+ try:
+ console.file = output
+ rich.print("foo", "bar")
+ rich.print("foo\n")
+ rich.print("foo\n\n")
+ assert output.getvalue() == "foo bar\nfoo\n\nfoo\n\n\n"
+ finally:
+ console.file = backup_file
+
+
+def test_rich_print_X():
+ console = rich.get_console()
+ output = io.StringIO()
+ backup_file = console.file
+ try:
+ console.file = output
+ rich.print("foo")
+ rich.print("fooX")
+ rich.print("fooXX")
+ assert output.getvalue() == "foo\nfooX\nfooXX\n"
+ finally:
+ console.file = backup_file