rich/tests/test_palette.py

9 lines
206 B
Python
Raw Permalink Normal View History

2020-12-28 16:34:43 +00:00
from rich._palettes import STANDARD_PALETTE
from rich.table import Table
def test_rich_cast():
table = STANDARD_PALETTE.__rich__()
assert isinstance(table, Table)
2020-12-28 16:35:55 +00:00
assert table.row_count == 16