test-mini · git:20260518.0d37b7d · 2026-05-18 · sha256 a79ff471ebd66a0d
test-mini git:20260518.0d37b7dA
Immutable. This exact content is served forever at /api/v1/blob/a79ff471ebd66a0d.
--- name: test-mini description: Add focused deterministic tests, fixtures, or smoke checks. --- # Test Mini ## Purpose Protect against wrong behavior without heavy tests. ## When to use Use for ML model workflows, agents, dashboards, data transformations, metric calculations, scheduled jobs, and any behavior that can appear to run while being wrong. ## Inputs - Implemented slice - Expected behavior - Available fixtures or examples - Build/test/run commands ## Workflow 1. Add one deterministic behavior test when possible. 2. Add one fixture or golden example when useful. 3. Add one smoke test or manual verification path. 4. Run exact commands. 5. Record command output and result. 6. Keep tests focused on the changed behavior. ## Outputs - Focused test or fixture - Smoke path - Exact command results - Remaining risk notes ## Stop conditions - The behavior is proven enough for the task risk. - No deterministic check is possible without changing the design. ## Anti-patterns - Only checking that the code runs without checking correctness. - Adding broad tests unrelated to the changed behavior. - Hiding manual verification steps in chat.