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

  1. Red: Write a test that describes the behavior you want. Run it. It must fail.
  2. Green: Write the minimum code to make the test pass. Nothing more.
  3. Refactor: Clean up while keeping tests green.
  4. Repeat
// Step 1: Write the failing test
Related skills
Installs
5
First Seen
Feb 18, 2026