Merge pull request #74 from tkf/full_name-builtin

No __builtin__ prefix for BaseOutput.full_name
This commit is contained in:
David Halter
2012-12-02 12:53:57 -08:00
2 changed files with 7 additions and 2 deletions

View File

@@ -234,6 +234,9 @@ class TestFeature(Base):
assert self.complete('import os; os.path.join')[0].full_name \
== 'os.path.join'
def test_full_name_builtin(self):
self.assertEqual(self.complete('type')[0].full_name, 'type')
def test_full_name_tuple_mapping(self):
s = """
import re