test lists in Interpreter, #297

This commit is contained in:
Dave Halter
2014-04-03 11:42:22 +02:00
parent 9854a42922
commit 9959929220

View File

@@ -42,3 +42,9 @@ class TestInterpreterAPI(TestCase):
self.check_interpreter_complete('(dt - dt).ti',
locals(),
completions)
def test_list(self):
array = ['haha']
self.check_interpreter_complete('array[0].uppe',
locals(),
['upper'])