aboutsummaryrefslogtreecommitdiff
path: root/crates/test_utils/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-23 12:36:29 +0000
committerAleksey Kladov <[email protected]>2019-01-23 12:36:29 +0000
commit45da21672ad1e4ec53487c373b1b7e2ca8f944a2 (patch)
tree450e229240e7ffecd90a6251c1ef61ddb725ef4d /crates/test_utils/src/lib.rs
parentb846832b8b2fb221cce42f170e9989c1dac5e468 (diff)
generalize marking infrastructure
Diffstat (limited to 'crates/test_utils/src/lib.rs')
-rw-r--r--crates/test_utils/src/lib.rs9
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 @@
1use std::fs; 1#[macro_use]
2use std::path::{Path, PathBuf}; 2pub mod marks;
3
4use std::{
5 fs,
6 path::{Path, PathBuf}
7};
3 8
4use text_unit::{TextRange, TextUnit}; 9use text_unit::{TextRange, TextUnit};
5use serde_json::Value; 10use serde_json::Value;