From cb9bf5c7e3767a70c1467c7bcbeddaab61207358 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 14 Dec 2025 13:11:18 +0000 Subject: [PATCH] docs: fix remaining broken links in documentation - Fix ./placeholder-bdd to ./placeholders in BDD workflow docs - Fix ./tdd/ to /workflows/tdd/ in understanding-reports.md - Fix ../getting-started to /tutorials/getting-started - Fix ../first-bidirectional-link to /tutorials/first-bidirectional-link --- docs/tutorials/understanding-reports.md | 2 +- docs/workflows/bdd/acceptance-to-unit.md | 2 +- docs/workflows/bdd/double-loop.md | 2 +- docs/workflows/bdd/index.md | 2 +- docs/workflows/tdd/index.md | 4 ++-- docs/workflows/tdd/red-green-refactor.md | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/tutorials/understanding-reports.md b/docs/tutorials/understanding-reports.md index 0721f53..021e0f7 100644 --- a/docs/tutorials/understanding-reports.md +++ b/docs/tutorials/understanding-reports.md @@ -235,5 +235,5 @@ Methods can be covered by both unit and integration tests. Now that you understand reports: - [Run Validation in CI](/how-to/run-validation-in-ci) - Automate validation -- [TDD Workflow](./tdd/) - Learn when to add links during development +- [TDD Workflow](/workflows/tdd/) - Learn when to add links during development - [Fix Validation Errors](/how-to/fix-validation-errors) - Resolve common issues diff --git a/docs/workflows/bdd/acceptance-to-unit.md b/docs/workflows/bdd/acceptance-to-unit.md index 3442784..88fc6bf 100644 --- a/docs/workflows/bdd/acceptance-to-unit.md +++ b/docs/workflows/bdd/acceptance-to-unit.md @@ -468,5 +468,5 @@ Acceptance: Order is fulfilled ## What's Next? -- [Placeholder BDD](./placeholder-bdd) - Use placeholders during BDD +- [Placeholder BDD](./placeholders) - Use placeholders during BDD - [Complete Example](./complete-example) - Full BDD example with shopping cart diff --git a/docs/workflows/bdd/double-loop.md b/docs/workflows/bdd/double-loop.md index 737748c..1c91894 100644 --- a/docs/workflows/bdd/double-loop.md +++ b/docs/workflows/bdd/double-loop.md @@ -584,4 +584,4 @@ Link Summary ## What's Next? - [Acceptance to Unit](./acceptance-to-unit) - More patterns for driving unit tests -- [Placeholder BDD](./placeholder-bdd) - Using placeholders in BDD workflows +- [Placeholder BDD](./placeholders) - Using placeholders in BDD workflows diff --git a/docs/workflows/bdd/index.md b/docs/workflows/bdd/index.md index 51c4c70..c5db363 100644 --- a/docs/workflows/bdd/index.md +++ b/docs/workflows/bdd/index.md @@ -51,7 +51,7 @@ TestLink adds traceability to BDD workflows: |----------|-------------------| | [Double-Loop TDD](./double-loop) | The outer acceptance loop and inner unit loop | | [Acceptance to Unit](./acceptance-to-unit) | Driving unit tests from acceptance tests | -| [Placeholder BDD](./placeholder-bdd) | Using placeholders in BDD workflows | +| [Placeholder BDD](./placeholders) | Using placeholders in BDD workflows | | [Complete Example](./complete-example) | Build a ShoppingCart feature using BDD | ## Quick Example diff --git a/docs/workflows/tdd/index.md b/docs/workflows/tdd/index.md index 7be4736..b967fad 100644 --- a/docs/workflows/tdd/index.md +++ b/docs/workflows/tdd/index.md @@ -96,8 +96,8 @@ See [How-to: Sync Links Automatically](/how-to/sync-links-automatically) for det Before starting these tutorials: -- Complete [Getting Started](../getting-started) -- Complete [Your First Bidirectional Link](../first-bidirectional-link) +- Complete [Getting Started](/tutorials/getting-started) +- Complete [Your First Bidirectional Link](/tutorials/first-bidirectional-link) - Have a basic understanding of TDD concepts Ready to begin? Start with [Red-Green-Refactor](./red-green-refactor)! diff --git a/docs/workflows/tdd/red-green-refactor.md b/docs/workflows/tdd/red-green-refactor.md index 9aa4f25..d625cff 100644 --- a/docs/workflows/tdd/red-green-refactor.md +++ b/docs/workflows/tdd/red-green-refactor.md @@ -8,7 +8,7 @@ We'll build a `StringCalculator` class that adds numbers from a string input. Th ## Prerequisites -- Completed [Getting Started](../getting-started) +- Completed [Getting Started](/tutorials/getting-started) - TestLink installed in your project ## The TDD Cycle with Links