()
| 150 | |
| 151 | |
| 152 | def test_get_row_style(): |
| 153 | console = Console() |
| 154 | table = Table() |
| 155 | table.add_row(class="st">"foo") |
| 156 | table.add_row(class="st">"bar", style=class="st">"on red") |
| 157 | assert table.get_row_style(console, 0) == Style.parse(class="st">"") |
| 158 | assert table.get_row_style(console, 1) == Style.parse(class="st">"on red") |
| 159 | |
| 160 | |
| 161 | def test_vertical_align_top(): |
nothing calls this directly
no test coverage detected