mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-09 07:14:48 +08:00
Add a few more tests for nested stub folders
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
in_stub_only: int
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
in_python = ''
|
||||||
|
in_both = ''
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
in_stub: int
|
||||||
|
in_both: float
|
||||||
@@ -22,3 +22,16 @@ with_stub_folder.in_with_stub_both_folder
|
|||||||
with_stub_folder.in_with_stub_python_folder
|
with_stub_folder.in_with_stub_python_folder
|
||||||
#? float()
|
#? float()
|
||||||
with_stub_folder.in_with_stub_stub_folder
|
with_stub_folder.in_with_stub_stub_folder
|
||||||
|
|
||||||
|
# Folders nested
|
||||||
|
|
||||||
|
from stub_folder.with_stub_folder import nested_stub_only, nested_with_stub
|
||||||
|
|
||||||
|
#? int()
|
||||||
|
nested_stub_only.in_stub_only
|
||||||
|
#? float()
|
||||||
|
nested_with_stub.in_both
|
||||||
|
#?
|
||||||
|
with_stub_folder.in_python
|
||||||
|
#? int()
|
||||||
|
nested_with_stub.in_stub
|
||||||
|
|||||||
Reference in New Issue
Block a user