ツリー構成 . ├── README.md ├── mocker │ ├── __init__.py │ └── __pycache__ ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── __pycache__ ├── stub.py └── test_target.py mocker/__init__.py import mymodule def target(): mymodule.get() tests/test_target.py from mocker import target def test_tar…