framework
framework copied to clipboard
OdsPareser for writing creates more cells than we provide in data
Overview
See this failing test:
def test_ods_parser_write(tmpdir):
source = Resource("data/table.csv")
target = Resource(str(tmpdir.join("table.ods")))
source.write(target)
with target:
assert target.header == ["id", "name"]
assert target.read_rows() == [
{"id": 1, "name": "english"},
{"id": 2, "name": "中国人"},
]