aboutsummaryrefslogtreecommitdiff
path: root/tests/tcolumnize.nim
blob: 0e8e1c86314aa840fd771d59a56254052cec82b0 (plain)
1
2
3
4
5
6
7
8
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)