aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_rst_tables.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_rst_tables.py')
-rw-r--r--tests/test_rst_tables.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_rst_tables.py b/tests/test_rst_tables.py
index d44c234..b3df5ad 100644
--- a/tests/test_rst_tables.py
+++ b/tests/test_rst_tables.py
@@ -77,6 +77,11 @@ a line ending.
expected = [['x', 'y', ''], ['a', 'b', 'c'], ['only one', '', '']]
self.assertEquals(expected, parse_table(input))
+ def testParseDealsWithSpacesAtLineEnd(self):
+ input = ['x y ', 'a b ', 'only one']
+ expected = [['x', 'y'], ['a', 'b'], ['only one', '']]
+ self.assertEquals(expected, parse_table(input))
+
def testTableLine(self):
self.assertEquals('', table_line([], True))
self.assertEquals('++', table_line([0], True))