Files
everything-claude-code/.cursor/rules/golang-testing.md

525 B

description, globs, alwaysApply
description globs alwaysApply
Go testing: table-driven tests, race detection, coverage reporting
**/*.go
false

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.