mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-06-14 20:21:23 +08:00
docs: add Spanish (es) translation (#2095)
Adds a complete Spanish translation of the ECC documentation under docs/es/, mirroring the Turkish (docs/tr/) translation in scope. 141 files covering agents, commands, rules, skills, contexts, examples, and core docs. Updates root README.md with the Spanish language link. Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
committed by
GitHub
parent
28b78dd7bf
commit
ac0f11c640
@@ -0,0 +1,31 @@
|
||||
---
|
||||
paths:
|
||||
- "**/*.go"
|
||||
- "**/go.mod"
|
||||
- "**/go.sum"
|
||||
---
|
||||
# Pruebas en Go
|
||||
|
||||
> Este archivo extiende [common/testing.md](../common/testing.md) con contenido específico de Go.
|
||||
|
||||
## Framework
|
||||
|
||||
Usar el `go test` estándar con **pruebas table-driven**.
|
||||
|
||||
## Detección de Condiciones de Carrera
|
||||
|
||||
Siempre ejecutar con la flag `-race`:
|
||||
|
||||
```bash
|
||||
go test -race ./...
|
||||
```
|
||||
|
||||
## Cobertura
|
||||
|
||||
```bash
|
||||
go test -cover ./...
|
||||
```
|
||||
|
||||
## Referencia
|
||||
|
||||
Ver skill: `golang-testing` para patrones detallados de pruebas en Go y helpers.
|
||||
Reference in New Issue
Block a user