mirror of https://github.com/Textualize/rich.git
8 lines
205 B
Python
8 lines
205 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
|