summaryrefslogtreecommitdiffstats
path: root/tests/test_palette.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_palette.py')
-rw-r--r--tests/test_palette.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_palette.py b/tests/test_palette.py
new file mode 100644
index 0000000..8ddd7cc
--- /dev/null
+++ b/tests/test_palette.py
@@ -0,0 +1,8 @@
+from rich._palettes import STANDARD_PALETTE
+from rich.table import Table
+
+
+def test_rich_cast():
+ table = STANDARD_PALETTE.__rich__()
+ assert isinstance(table, Table)
+ assert table.row_count == 16