forked from VimPlug/jedi
Move not_in_sys_path tests to examples
This commit is contained in:
0
test/examples/not_in_sys_path/__init__.py
Normal file
0
test/examples/not_in_sys_path/__init__.py
Normal file
1
test/examples/not_in_sys_path/not_in_sys_path.py
Normal file
1
test/examples/not_in_sys_path/not_in_sys_path.py
Normal file
@@ -0,0 +1 @@
|
||||
value = 3
|
||||
@@ -0,0 +1 @@
|
||||
value = 'package'
|
||||
@@ -0,0 +1 @@
|
||||
value = 'package.module'
|
||||
0
test/examples/not_in_sys_path/pkg/__init__.py
Normal file
0
test/examples/not_in_sys_path/pkg/__init__.py
Normal file
7
test/examples/not_in_sys_path/pkg/module.py
Normal file
7
test/examples/not_in_sys_path/pkg/module.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from not_in_sys_path import not_in_sys_path
|
||||
from not_in_sys_path import not_in_sys_path_package
|
||||
from not_in_sys_path.not_in_sys_path_package import module
|
||||
|
||||
not_in_sys_path.value
|
||||
not_in_sys_path_package.value
|
||||
module.value
|
||||
Reference in New Issue
Block a user