diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-23 12:40:36 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-23 12:40:36 +0000 |
commit | 86507c0626eb07485b21c61638673acbb3c2a9ad (patch) | |
tree | 450e229240e7ffecd90a6251c1ef61ddb725ef4d /crates/test_utils/src/lib.rs | |
parent | b846832b8b2fb221cce42f170e9989c1dac5e468 (diff) | |
parent | 45da21672ad1e4ec53487c373b1b7e2ca8f944a2 (diff) |
Merge #606
606: generalize marking infrastructure r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/test_utils/src/lib.rs')
-rw-r--r-- | crates/test_utils/src/lib.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/crates/test_utils/src/lib.rs b/crates/test_utils/src/lib.rs index 6489033dd..35a679aea 100644 --- a/crates/test_utils/src/lib.rs +++ b/crates/test_utils/src/lib.rs | |||
@@ -1,5 +1,10 @@ | |||
1 | use std::fs; | 1 | #[macro_use] |
2 | use std::path::{Path, PathBuf}; | 2 | pub mod marks; |
3 | |||
4 | use std::{ | ||
5 | fs, | ||
6 | path::{Path, PathBuf} | ||
7 | }; | ||
3 | 8 | ||
4 | use text_unit::{TextRange, TextUnit}; | 9 | use text_unit::{TextRange, TextUnit}; |
5 | use serde_json::Value; | 10 | use serde_json::Value; |