rename test_index.py to test_index_document.py

This commit is contained in:
CREDO23 2026-02-25 01:43:21 +02:00
parent 61e50834e6
commit 46c7ccd70b
9 changed files with 4071 additions and 3233 deletions

View file

@ -0,0 +1,10 @@
# Refactor Candidates
After TDD cycle, look for:
- **Duplication** → Extract function/class
- **Long methods** → Break into private helpers (keep tests on public interface)
- **Shallow modules** → Combine or deepen
- **Feature envy** → Move logic to where data lives
- **Primitive obsession** → Introduce value objects
- **Existing code** the new code reveals as problematic