From 107565b62d8cc48dba5303914ec86a465f3b383d Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Thu, 30 Nov 2023 10:15:48 +0100 Subject: [PATCH] The useful crates slide can go now We now have actual slides which showcase the crates in action. --- src/SUMMARY.md | 1 - src/testing/useful-crates.md | 13 ------------- 2 files changed, 14 deletions(-) delete mode 100644 src/testing/useful-crates.md diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 36db5b6ce58..1b28785e8e8 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -171,7 +171,6 @@ - [Testing](testing.md) - [Test Modules](testing/unit-tests.md) - [Other Types of Tests](testing/other.md) - - [Useful Crates](testing/useful-crates.md) - [Compiler lints and Clippy](testing/lints.md) - [Exercise: Luhn Algorithm](testing/exercise.md) - [Solution](testing/solution.md) diff --git a/src/testing/useful-crates.md b/src/testing/useful-crates.md deleted file mode 100644 index 91a6847cdb7..00000000000 --- a/src/testing/useful-crates.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -minutes: 3 ---- - -# Useful Crates - -Rust comes with only basic support for writing tests. - -Here are some additional crates which we recommend for writing tests: - -* [googletest](https://docs.rs/googletest): Comprehensive test assertion library in the tradition of GoogleTest for C++. -* [proptest](https://docs.rs/proptest): Property-based testing for Rust. -* [rstest](https://docs.rs/rstest): Support for fixtures and parameterised tests.