working on support for variable widths in columns

This commit is contained in:
Niru Maheswaranathan
2017-05-18 23:51:59 -07:00
parent cb7c1d27f4
commit da6c201f24
3 changed files with 42 additions and 21 deletions

View File

@@ -22,5 +22,5 @@ def test_row():
assert row([1, 2, 3], width=3, style='clean') == ' 1 2 3 '
# invalid
with pytest.raises(ValueError) as context:
with pytest.raises(ValueError):
row([{}])