()
| 19 | |
| 20 | |
| 21 | def test_parse_table_horizontal_empty(): |
| 22 | table = parse_table( |
| 23 | """+---------+--------------+ |
| 24 | | Id | Name | |
| 25 | +---------+--------------+ |
| 26 | """ |
| 27 | ) |
| 28 | assert table.header == ["Id", "Name"] |
| 29 | assert table.rows == [] |
| 30 | |
| 31 | |
| 32 | def test_parse_table_vertical(): |
nothing calls this directly
no test coverage detected