rust-tdd
Installation
SKILL.md
Rust TDD Enforcement
Strict test-driven development practices for Rust projects.
The Golden Rule
No Code Without a Failing Test First
This is not optional. This is not negotiable. Every feature, every bug fix, every change starts with a test.
The TDD Cycle
- Red: Write a test that describes the behavior you want. Run it. It must fail.
- Green: Write the minimum code to make the test pass. Nothing more.
- Refactor: Clean up while keeping tests green.
- Repeat