()
| 66 | |
| 67 | |
| 68 | def test_parse_table_empty(): |
| 69 | table = parse_table( |
| 70 | """ |
| 71 | +---------+--------------+ |
| 72 | +---------+--------------+ |
| 73 | """ |
| 74 | ) |
| 75 | assert table is None |
| 76 | |
| 77 | |
| 78 | def test_parse_table_ignore_suffix(): |
nothing calls this directly
no test coverage detected