diff --git a/test/test_api/test_interpreter.py b/test/test_api/test_interpreter.py index 6a15c4ab..10c344ed 100644 --- a/test/test_api/test_interpreter.py +++ b/test/test_api/test_interpreter.py @@ -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'])