MCPcopy Create free account
hub / github.com/It4innovations/hyperqueue / test_parse_table_horizontal_empty

Function test_parse_table_horizontal_empty

tests/test_utils.py:21–29  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

19
20
21def 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
32def test_parse_table_vertical():

Callers

nothing calls this directly

Calls 1

parse_tableFunction · 0.85

Tested by

no test coverage detected