test for problem with points in completion

This commit is contained in:
David Halter
2012-12-29 23:38:47 +01:00
parent 01220e047e
commit 07dbebe277

View File

@@ -308,6 +308,14 @@ class TestRegression(Base):
assert len(g) == 1
assert g[0].start_pos != (0, 0)
def test_points_in_completion(self):
"""At some point, points were inserted into the completions, this
caused problems, sometimes.
"""
c = self.complete("if IndentationErr")
assert c[0].word == 'IndentationError'
self.assertEqual(c[0].complete, 'or')
class TestFeature(Base):
def test_full_name(self):