File size: 206 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 |
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
|