From fb8b522b8c2ee0b770cd09cfaef9b660140ffd4c Mon Sep 17 00:00:00 2001 From: mautamu Date: Wed, 28 Apr 2021 23:51:15 -0500 Subject: [PATCH] Fix broken link mistake --- src/cargo/test.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/cargo/test.md b/src/cargo/test.md index e28c200659..01884a09af 100644 --- a/src/cargo/test.md +++ b/src/cargo/test.md @@ -25,8 +25,8 @@ Each file in `tests` is a separate i.e. a test that is meant to test your library as if it were being called from a dependent crate. -The [Testing](testing.md) chapter elaborates on the three different testing styles: -[Unit](testing/unit_testing.md), [Doc](testing/doc_testing.md), and [Integration](testing/integration_testing.md). +The [Testing][testing] chapter elaborates on the three different testing styles: +[Unit][unit_testing], [Doc][doc_testing], and [Integration][integration_testing]. `cargo` naturally provides an easy way to run all of your tests! @@ -147,3 +147,8 @@ Ferris Corro Ferris ``` + +[testing]: ../testing.md +[unit_testing]: ../testing/unit_testing.md +[integration_testing]: ../testing/unit_testing.md +[doc_testing]: ../testing/doc_testing.md