Modules and submodules (unittest)
Let's say we have the following directory structure:
main_module/
├── moduleA.py
└── submodules/
├── submoduleB.py
└── submoduleC.py
Inside moduleA.py, we define a function called hello():
# moduleA.py
def hello():
print...
snowcodes.hashnode.dev4 min read