Documentation Index
Fetch the complete documentation index at: https://gump.build/docs/llms.txt
Use this file to discover all available pages before exploring further.
Test Backfill
Add tests to existing untested code.Community pattern — copy this YAML and adapt the gates to your project. Not available as a built-in via
gump run.When to use
When you have working code with poor test coverage. The inverse of TDD — the code exists, the tests are missing.The workflow
How it works
Theuntouched: "*.go" gate (combined with touched: "*_test.*") ensures only test files are created — implementation code stays untouched. The analyze step injects live coverage data as context.
Customize
Target specific packages
Target specific packages
Modify the
bash: context to filter specific paths.Enforce a coverage threshold
Enforce a coverage threshold
Add
coverage: 80 to the quality gate.