rich/tests/test_palette.py
Will McGugan 696e85da07 black
2020-12-28 16:35:55 +00:00

8 lines
206 B
Python

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