From d10cdd25e7a5509252aa2af077b66c679e313ba0 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 --- docs/dev/architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md index f4e7263868c4..4f8723a93689 100644 --- a/docs/dev/architecture.md +++ b/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.