()
| 362 | |
| 363 | |
| 364 | def test_close_workbook(): |
| 365 | reader = CalamineWorkbook.from_path(PATH / "base.xlsx") |
| 366 | reader.close() |
| 367 | |
| 368 | with pytest.raises(WorkbookClosed): |
| 369 | reader.get_sheet_by_index(1) |
| 370 | |
| 371 | |
| 372 | def test_close_workbook_double(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…