import soon/columnize import std/[unittest] test "Testing columnize": var table = newSeq[Line]() table.add(Line(columns: @["Jan 1", "(OVERDUE)", "Do the thing"], attachments: @[])) table.add(Line(columns: @["Feb 22", "(Due in 24 days)", "Do that other thing"], attachments: @[])) columnize.echo(table)