From 1a5942364a6c47a221d0e4e8c008ead1685a1e33 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Tue, 21 May 2013 17:16:40 +0200 Subject: [PATCH] Add failing tests for first part of #213 --- test/completion/imports.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/completion/imports.py b/test/completion/imports.py index 83a4a721..d62a47c7 100644 --- a/test/completion/imports.py +++ b/test/completion/imports.py @@ -72,6 +72,16 @@ import os #? ['dirname'] os.path.dirname +#? os.path.join +from os.path import join + +from os.path import ( + expanduser +) + +#? os.path.expanduser +expanduser + from itertools import (tee, islice) #? ['islice']