From 697df5599e5cea49368e68fd346bcc71e36ccecc Mon Sep 17 00:00:00 2001 From: Luca Palmieri <20745048+LukeMathWalker@users.noreply.github.com> Date: Mon, 5 Aug 2024 16:11:24 +0200 Subject: [PATCH] Update "Rust advanced testing" links to point at the hosted book version (#2265) Following up on @mgeisler's comment in https://github.com/google/comprehensive-rust/pull/2029 --- src/android/testing/googletest.md | 2 +- src/other-resources.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/android/testing/googletest.md b/src/android/testing/googletest.md index 62a55a77..0a84e9f3 100644 --- a/src/android/testing/googletest.md +++ b/src/android/testing/googletest.md @@ -40,7 +40,7 @@ Error: See failure output above - This just scratches the surface, there are many builtin matchers. Consider going through the first chapter of - ["Advanced testing for Rust applications"](https://github.com/mainmatter/rust-advanced-testing-workshop), + ["Advanced testing for Rust applications"](https://rust-exercises.com/advanced-testing/), a self-guided Rust course: it provides a guided introduction to the library, with exercises to help you get comfortable with `googletest` macros, its matchers and its overall philosophy. diff --git a/src/other-resources.md b/src/other-resources.md index 531de74e..c7092ac1 100644 --- a/src/other-resources.md +++ b/src/other-resources.md @@ -47,7 +47,7 @@ A small selection of other guides and tutorial for Rust: a series of small presentations covering both basic and advanced part of the Rust language. Other topics such as WebAssembly, and async/await are also covered. -- [Advanced testing for Rust applications](https://github.com/mainmatter/rust-advanced-testing-workshop): +- [Advanced testing for Rust applications](https://rust-exercises.com/advanced-testing/): a self-paced workshop that goes beyond Rust's built-in testing framework. It covers `googletest`, snapshot testing, mocking as well as how to write your own custom test harness.