claude-code/claude/rules/golang/testing.md

457 B

paths
**/*.go
**/go.mod
**/go.sum

Go Testing

This file extends common/testing.md with Go specific content.

Framework

Use the standard go test with table-driven tests.

Race Detection

Always run with the -race flag:

go test -race ./...

Coverage

go test -cover ./...

Reference

See skill: golang-testing for detailed Go testing patterns and helpers.