From 55964dad2a754b9df8a92cb2a8e1f3e3e0623c66 Mon Sep 17 00:00:00 2001 From: Edward Jones Date: Fri, 26 Jul 2024 22:49:11 -0300 Subject: [PATCH] docs: Reference cov_mark crate instead of test_utils/mark Seems this was switched over in https://github.com/rust-lang/rust-analyzer/issues/7922 --- src/tools/rust-analyzer/docs/dev/architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/rust-analyzer/docs/dev/architecture.md b/src/tools/rust-analyzer/docs/dev/architecture.md index f4e7263868c..4f8723a9368 100644 --- a/src/tools/rust-analyzer/docs/dev/architecture.md +++ b/src/tools/rust-analyzer/docs/dev/architecture.md @@ -408,7 +408,7 @@ It has a much richer vocabulary of types than `ide`, but the basic testing setup For comparisons, we use the `expect` crate for snapshot testing. To test various analysis corner cases and avoid forgetting about old tests, we use so-called marks. -See the `marks` module in the `test_utils` crate for more. +See the [cov_mark](https://docs.rs/cov-mark/latest/cov_mark/) crate documentation for more. **Architecture Invariant:** rust-analyzer tests do not use libcore or libstd. All required library code must be a part of the tests.