()
| 170 | |
| 171 | |
| 172 | async def test_empty_table_interactions(): |
| 173 | app = DataTableApp() |
| 174 | async with app.run_test() as pilot: |
| 175 | await pilot.press( |
| 176 | "enter", "up", "down", "left", "right", "home", "end", "pagedown", "pageup" |
| 177 | ) |
| 178 | assert app.message_names == [] |
| 179 | |
| 180 | |
| 181 | @pytest.mark.parametrize("show_header", [True, False]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…