issue #590: whoops, import missing test modules
parent
f26a00de54
commit
c81f366fc6
@ -0,0 +1,5 @@
|
||||
# #590: a subpackage that turns itself into a module from elsewhere on sys.path.
|
||||
I_AM = "the subpackage that was replaced with a system module"
|
||||
import sys
|
||||
import system_distro
|
||||
sys.modules[__name__] = system_distro
|
@ -0,0 +1 @@
|
||||
I_AM = "the module inside the replaced subpackage"
|
@ -0,0 +1,2 @@
|
||||
# #590: a system module that replaces some subpackage
|
||||
I_AM = "the system module that replaced the subpackage"
|
Loading…
Reference in New Issue