소스 정보
- 저장소
- vstorm-co/pydantic-deepagents
- 최근 소스 활동
- 2026년 3월 30일 10:48
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,068
- 포크
- 132
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SKILL.md 표시 중
SKILL.md
소스 지침 · 읽기 전용 미리보기- name
- test-writer
- description
- Generate comprehensive test suites for existing code
- tags
- ["testing","code-quality"]
- version
- 1.0.0
# Test Writer
Generate comprehensive tests for the target code.
## Process
1. Read the source code to understand all public functions/methods
2. Identify the testing framework already used in the project (pytest, unittest, etc.)
3. Follow existing test patterns and conventions in the project
4. Write tests covering all categories below
## Coverage Strategy
### Happy Path
- Normal inputs with expected outputs
- All public methods/functions
### Edge Cases
- Empty inputs (empty string, empty list, None)
- Boundary values (0, -1, max int)
- Single element collections
### Error Cases
- Invalid input types
- Missing required arguments
- Network/IO failures (mock external calls)
### Integration
- Multiple functions working together
- State changes across calls
## Guidelines
- One test function per behavior, not per method
- Descriptive test names: `test_<what>_<condition>_<expected>`
- Use fixtures for shared setup
- Mock external dependencies (APIs, databases, filesystem)
- Assert specific values, not just truthiness
- Test both return values and side effects
GitHub에서 보기