Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Roadmap

**Curso:** rust-testing
**Estado actual:** planned
**Estado actual:** draft
**Tipo:** complementario técnico
**Fuente:** RFC-0001 §10, §13, §14 y §15

Expand All @@ -14,15 +14,15 @@ el estándar de Jeresoft Academy.
| # | Capítulo | Milestone | Estado |
|---|----------|-----------|--------|
| 01 | Fundamentos de testing | 01. Fundamentos de testing | draft |
| 02 | Unit tests en Rust | 02. Unit tests en Rust | planned |
| 03 | Tests de integración | 03. Tests de integración | planned |
| 04 | Test doubles | 04. Test doubles | planned |
| 05 | Property-based testing | 05. Property-based testing | planned |
| 06 | Contract testing | 06. Contract testing | planned |
| 07 | Mutation testing | 07. Mutation testing | planned |
| 08 | Performance testing | 08. Performance testing | planned |
| 09 | Chaos testing | 09. Chaos testing | planned |
| 10 | Estrategia de calidad para sistemas reales | 10. Estrategia de calidad para sistemas reales | planned |
| 02 | Unit tests en Rust | 02. Unit tests en Rust | draft |
| 03 | Tests de integración | 03. Tests de integración | draft |
| 04 | Test doubles | 04. Test doubles | draft |
| 05 | Property-based testing | 05. Property-based testing | draft |
| 06 | Contract testing | 06. Contract testing | draft |
| 07 | Mutation testing | 07. Mutation testing | draft |
| 08 | Performance testing | 08. Performance testing | draft |
| 09 | Chaos testing | 09. Chaos testing | draft |
| 10 | Estrategia de calidad para sistemas reales | 10. Estrategia de calidad para sistemas reales | draft |

## Cierre editorial

Expand Down
20 changes: 10 additions & 10 deletions course.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"repository": "https://github.com/jeresoftx/rust-testing",
"language": "rust",
"track": "complementario técnico",
"status": "planned",
"status": "draft",
"rfc": "RFC-0001 §10"
},
"chapters": [
Expand All @@ -24,7 +24,7 @@
"id": "unit_tests",
"title": "Unit tests en Rust",
"slug": "unit-tests-en-rust",
"status": "planned",
"status": "draft",
"document": "docs/02-unit-tests-en-rust.md",
"module": "src/unit_tests.rs",
"milestone": "02. Unit tests en Rust"
Expand All @@ -34,7 +34,7 @@
"id": "integration_tests",
"title": "Tests de integración",
"slug": "tests-de-integracion",
"status": "planned",
"status": "draft",
"document": "docs/03-tests-de-integracion.md",
"module": "src/integration_tests.rs",
"milestone": "03. Tests de integración"
Expand All @@ -44,7 +44,7 @@
"id": "test_doubles",
"title": "Test doubles",
"slug": "test-doubles",
"status": "planned",
"status": "draft",
"document": "docs/04-test-doubles.md",
"module": "src/test_doubles.rs",
"milestone": "04. Test doubles"
Expand All @@ -54,7 +54,7 @@
"id": "property_testing",
"title": "Property-based testing",
"slug": "property-based-testing",
"status": "planned",
"status": "draft",
"document": "docs/05-property-based-testing.md",
"module": "src/property_testing.rs",
"milestone": "05. Property-based testing"
Expand All @@ -64,7 +64,7 @@
"id": "contract_testing",
"title": "Contract testing",
"slug": "contract-testing",
"status": "planned",
"status": "draft",
"document": "docs/06-contract-testing.md",
"module": "src/contract_testing.rs",
"milestone": "06. Contract testing"
Expand All @@ -74,7 +74,7 @@
"id": "mutation_testing",
"title": "Mutation testing",
"slug": "mutation-testing",
"status": "planned",
"status": "draft",
"document": "docs/07-mutation-testing.md",
"module": "src/mutation_testing.rs",
"milestone": "07. Mutation testing"
Expand All @@ -84,7 +84,7 @@
"id": "performance_testing",
"title": "Performance testing",
"slug": "performance-testing",
"status": "planned",
"status": "draft",
"document": "docs/08-performance-testing.md",
"module": "src/performance_testing.rs",
"milestone": "08. Performance testing"
Expand All @@ -94,7 +94,7 @@
"id": "chaos_testing",
"title": "Chaos testing",
"slug": "chaos-testing",
"status": "planned",
"status": "draft",
"document": "docs/09-chaos-testing.md",
"module": "src/chaos_testing.rs",
"milestone": "09. Chaos testing"
Expand All @@ -104,7 +104,7 @@
"id": "quality_strategy",
"title": "Estrategia de calidad para sistemas reales",
"slug": "estrategia-de-calidad-para-sistemas-reales",
"status": "planned",
"status": "draft",
"document": "docs/10-estrategia-de-calidad-para-sistemas-reales.md",
"module": "src/quality_strategy.rs",
"milestone": "10. Estrategia de calidad para sistemas reales"
Expand Down
2 changes: 1 addition & 1 deletion docs/00-introduccion.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ en fundamentos que siguen siendo útiles aunque las herramientas cambien.

## Estado editorial

Este documento está en `planned`. No está marcado como `reviewed` ni
Este documento está en `draft`. No está marcado como `reviewed` ni
`published`.
Loading