()
| 320 | |
| 321 | |
| 322 | async def test_add_columns_user_defined_keys(): |
| 323 | app = DataTableApp() |
| 324 | async with app.run_test(): |
| 325 | table = app.query_one(DataTable) |
| 326 | key = table.add_column("Column", key="donut") |
| 327 | assert key == "donut" |
| 328 | assert key == key |
| 329 | |
| 330 | |
| 331 | async def test_remove_row(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…