rich/tests/test_palette.py

8 lines
205 B
Python
Raw 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)
assert table.row_count == 16