From 9959929220d4745d82d74f8bdcefd975db31baee Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 3 Apr 2014 11:42:22 +0200 Subject: [PATCH] test lists in Interpreter, #297 --- test/test_api/test_interpreter.py | 6 ++++++ 1 file changed, 6 insertions(+) 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'])