diff -r 3f4d337cb80a -r c981f4a9ea74 tests/test-minirst.py --- a/tests/test-minirst.py Thu Aug 11 22:40:41 2011 -0500 +++ b/tests/test-minirst.py Thu Aug 11 22:40:43 2011 -0500 @@ -232,14 +232,13 @@ debugformat('comments', comments, 30) -table = """ - === === === - a b c - === === === - 1 2 3 - foo bar baz - aa bb sdfsdfsdf this line is way too long for this cell. - === === === -""" + +data = [['a', 'b', 'c'], + ['1', '2', '3'], + ['foo', 'bar', 'baz this list is very very very long man']] + +table = minirst.maketable(data, 2, True) + +print table debugformat('table', table, 30)