From 873c609fcac911a3e3c153f2b9720ecfcbf50734 Mon Sep 17 00:00:00 2001 From: David Halter Date: Fri, 16 Aug 2013 10:05:25 +0430 Subject: [PATCH] forgot to write a test for #293 --- test/test_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_utils.py b/test/test_utils.py index 565311af..15430a9c 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -29,6 +29,8 @@ class TestSetupReadline(TestCase): def test_simple(self): assert self.completions('list') == ['list'] assert self.completions('importerror') == ['ImportError'] + s = "print BaseE" + assert self.completions(s) == [s + 'xception'] def test_nested(self): assert self.completions('list.Insert') == ['list.insert']