mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 13:43:26 +08:00
525 B
525 B
description, globs, alwaysApply
| description | globs | alwaysApply | |
|---|---|---|---|
| Go testing: table-driven tests, race detection, coverage reporting |
|
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.