Use Python mocks and fakes as a design tool without losing behavioral confidence. Use when testing external dependencies, choosing monkeypatch versus unittest.mock.patch, isolating slow boundaries, avoiding mock-heavy tests, interpreting mock call assertions, or refactoring toward clearer dependency seams.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add thedixitjain/the-mega-skill-library --skill python-mock-isolation-design --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Python Mock Isolation Design?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/thedixitjain-python-mock-isolation-design)More formats (shields.io, HTML) on the badges page.
---
name: python-mock-isolation-design
description: "Use Python mocks and fakes as a design tool without losing behavioral confidence. Use when testing external dependencies, choosing monkeypatch versus unittest.mock.patch, isolating slow boundaries, avoiding mock-heavy tests, interpreting mock call assertions, or refactoring toward clearer dependency seams."
category: frontend-and-design
source_repo: hashgraph-online/awesome-codex-plugins
source_path: "plugins/LVTD-LLC/skills/skills/python-mock-isolation-design/SKILL.md"
source_url: https://github.com/hashgraph-online/awesome-codex-plugins/blob/HEAD/plugins/LVTD-LLC/skills/skills/python-mock-isolation-design/SKILL.md
---
# Python Mock Isolation Design
Use this skill when replacing a dependency in a Python test changes what the test proves. Mocks are useful at slow, nondeterministic, or external boundaries; they become harmful when they replace the behavior the test is supposed to validate.
## Source Traceability
Primary source: Harry Percival, *Test-Driven Development with Python*, 3rd ed. Guidance is transformed and paraphrased from chapters 20, 21, 27, and Appendix A, especially manual monkeypatching, `unittest.mock.patch`, mock coupling, call argument inspection, test isolation, and the architectural route out of mock-heavy suites.
## Workflow
1. Name the boundary.
- External service, email, clock, filesystem, network, framework adapter, or expensive side effect.
- If the dependency is local domain logic, prefer real code.
2. Choose the replacement.
- Use a fake when state and behavior are simple and meaningful.
- Use `patch` when replacing a collaborator looked up by the module under test.
- Use monkeypatching sparingly and restore state automatically.
- Use autospec/spec when interface drift matters.
3. Keep behavior assertions primary.
- Assert user-visible or domain-visible outcomes first.
- Assert mock calls only when the interaction is the contract.
- Inspect call arguments when they clarify the behavior, not as a substitute for it.
4. Watch for design feedback.
- If setup requires many mocks, the code may have hidden dependencies.
- If tests break on harmless refactors, the test is too coupled to implementation.
- Consider introducing a boundary interface, service object, or functional core.
Read [mock-isolation-patterns.md](references/mock-isolation-patterns.md) for replacement choices and smell handling.
## Decision Rules
- Patch where the code under test looks up the dependency.
- Prefer fakes for small stable protocols.
- Use `mock.return_value` and `side_effect` deliberately; do not let default mocks create imaginary object graphs.
- Avoid broad `MagicMock` objects without specs for important interfaces.
- Keep at least one integration or contract test for each important boundary.
## Guardrails
- Do not mock Django settings, HTTP, time, or command output by hand if a framework helper exists; use `django-targeted-mocking` for Django-specific boundaries.
- Do not assert only that a mocked method was called unless that call is the behavior.
- Do not use mocks as the primary strategy for making all tests fast; architecture should carry that work.
- Do not keep mocks that prevent refactoring from changing implementation safely.
## Verification
Before finishing, record:
- Boundary being replaced and why.
- Fake, patch, or real dependency choice.
- Behavior assertion that proves the outcome.
- Mock interaction assertion only when interaction is the contract.
- Integration/contract coverage for the real boundary.
---
**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/LVTD-LLC/skills/skills/python-mock-isolation-design/SKILL.md`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!