Add a few more tests for nested stub folders

This commit is contained in:
Dave Halter
2019-05-15 22:18:22 +02:00
parent e4170d65b7
commit f49d48fbd2
4 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1 @@
in_stub_only: int

View File

@@ -0,0 +1,2 @@
in_python = ''
in_both = ''

View File

@@ -0,0 +1,2 @@
in_stub: int
in_both: float

View File

@@ -22,3 +22,16 @@ with_stub_folder.in_with_stub_both_folder
with_stub_folder.in_with_stub_python_folder
#? float()
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