aboutsummaryrefslogtreecommitdiff
path: root/crates/test_utils
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-01-07 15:21:00 +0000
committerAleksey Kladov <[email protected]>2021-01-07 16:11:27 +0000
commitf459375f4873d601b6a0e2c3c5d29be569b3e067 (patch)
tree97bceccdbcfa1a5f5b932c16786e7339b4ff39da /crates/test_utils
parent7967ce85cfc5fc2b1996425b44f2a45d0841c8ff (diff)
Better fixture highlight
Diffstat (limited to 'crates/test_utils')
-rw-r--r--crates/test_utils/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/test_utils/src/lib.rs b/crates/test_utils/src/lib.rs
index 05d6e8c9e..84c1d7ebb 100644
--- a/crates/test_utils/src/lib.rs
+++ b/crates/test_utils/src/lib.rs
@@ -26,6 +26,7 @@ pub use rustc_hash::FxHashMap;
26pub use crate::fixture::Fixture; 26pub use crate::fixture::Fixture;
27 27
28pub const CURSOR_MARKER: &str = "$0"; 28pub const CURSOR_MARKER: &str = "$0";
29pub const ESCAPED_CURSOR_MARKER: &str = "\\$0";
29 30
30/// Asserts that two strings are equal, otherwise displays a rich diff between them. 31/// Asserts that two strings are equal, otherwise displays a rich diff between them.
31/// 32///