()
| 292 | |
| 293 | |
| 294 | async def test_add_columns(): |
| 295 | app = DataTableApp() |
| 296 | async with app.run_test(): |
| 297 | table = app.query_one(DataTable) |
| 298 | column_keys = table.add_columns("1", "2", "3") |
| 299 | assert len(column_keys) == 3 |
| 300 | assert len(table.columns) == 3 |
| 301 | |
| 302 | |
| 303 | async def test_add_columns_with_tuples(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…