aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-25 12:26:34 +0100
committerAleksey Kladov <[email protected]>2018-08-25 12:26:34 +0100
commit2d41bc3e6c1adb8abce5c796cfd24f77fee6f420 (patch)
treee3b683b98ca0720d42ae55565741bd0ef806f631
parente4828124238c4238a7f5532621d1f2df2170e77a (diff)
rename
-rw-r--r--crates/libanalysis/Cargo.toml2
-rw-r--r--crates/libanalysis/tests/tests.rs4
-rw-r--r--crates/libeditor/Cargo.toml2
-rw-r--r--crates/libeditor/tests/test.rs4
-rw-r--r--crates/libsyntax2/Cargo.toml2
-rw-r--r--crates/libsyntax2/tests/test/main.rs2
-rw-r--r--crates/test_utils/Cargo.toml (renamed from crates/assert_eq_text/Cargo.toml)2
-rw-r--r--crates/test_utils/src/lib.rs (renamed from crates/assert_eq_text/src/lib.rs)0
8 files changed, 9 insertions, 9 deletions
diff --git a/crates/libanalysis/Cargo.toml b/crates/libanalysis/Cargo.toml
index fa859ff94..6337bcf64 100644
--- a/crates/libanalysis/Cargo.toml
+++ b/crates/libanalysis/Cargo.toml
@@ -14,4 +14,4 @@ libsyntax2 = { path = "../libsyntax2" }
14libeditor = { path = "../libeditor" } 14libeditor = { path = "../libeditor" }
15 15
16[dev-dependencies] 16[dev-dependencies]
17assert_eq_text = { path = "../assert_eq_text" } 17test_utils = { path = "../test_utils" }
diff --git a/crates/libanalysis/tests/tests.rs b/crates/libanalysis/tests/tests.rs
index 931ab4183..32abf9152 100644
--- a/crates/libanalysis/tests/tests.rs
+++ b/crates/libanalysis/tests/tests.rs
@@ -1,10 +1,10 @@
1extern crate libanalysis; 1extern crate libanalysis;
2extern crate assert_eq_text; 2extern crate test_utils;
3 3
4use std::path::PathBuf; 4use std::path::PathBuf;
5 5
6use libanalysis::{WorldState, FileId}; 6use libanalysis::{WorldState, FileId};
7use assert_eq_text::assert_eq_dbg; 7use test_utils::assert_eq_dbg;
8 8
9 9
10#[test] 10#[test]
diff --git a/crates/libeditor/Cargo.toml b/crates/libeditor/Cargo.toml
index 55f41c2c5..265772204 100644
--- a/crates/libeditor/Cargo.toml
+++ b/crates/libeditor/Cargo.toml
@@ -11,4 +11,4 @@ superslice = "0.1.0"
11libsyntax2 = { path = "../libsyntax2" } 11libsyntax2 = { path = "../libsyntax2" }
12 12
13[dev-dependencies] 13[dev-dependencies]
14assert_eq_text = { path = "../assert_eq_text" } 14test_utils = { path = "../test_utils" }
diff --git a/crates/libeditor/tests/test.rs b/crates/libeditor/tests/test.rs
index 7e5e75ec2..04c616ff4 100644
--- a/crates/libeditor/tests/test.rs
+++ b/crates/libeditor/tests/test.rs
@@ -1,9 +1,9 @@
1extern crate libeditor; 1extern crate libeditor;
2extern crate libsyntax2; 2extern crate libsyntax2;
3#[macro_use] 3#[macro_use]
4extern crate assert_eq_text; 4extern crate test_utils;
5 5
6use assert_eq_text::{assert_eq_dbg}; 6use test_utils::{assert_eq_dbg};
7use libsyntax2::{File, TextUnit, TextRange}; 7use libsyntax2::{File, TextUnit, TextRange};
8use libeditor::{ 8use libeditor::{
9 ActionResult, 9 ActionResult,
diff --git a/crates/libsyntax2/Cargo.toml b/crates/libsyntax2/Cargo.toml
index e8810046a..918c02775 100644
--- a/crates/libsyntax2/Cargo.toml
+++ b/crates/libsyntax2/Cargo.toml
@@ -13,5 +13,5 @@ parking_lot = "0.6.0"
13smol_str = "0.1.0" 13smol_str = "0.1.0"
14 14
15[dev-dependencies] 15[dev-dependencies]
16assert_eq_text = { path = "../assert_eq_text" } 16test_utils = { path = "../test_utils" }
17walkdir = "2.2.0" 17walkdir = "2.2.0"
diff --git a/crates/libsyntax2/tests/test/main.rs b/crates/libsyntax2/tests/test/main.rs
index 18c711aee..cb8a52c98 100644
--- a/crates/libsyntax2/tests/test/main.rs
+++ b/crates/libsyntax2/tests/test/main.rs
@@ -1,6 +1,6 @@
1extern crate libsyntax2; 1extern crate libsyntax2;
2#[macro_use] 2#[macro_use]
3extern crate assert_eq_text; 3extern crate test_utils;
4extern crate walkdir; 4extern crate walkdir;
5 5
6use std::{ 6use std::{
diff --git a/crates/assert_eq_text/Cargo.toml b/crates/test_utils/Cargo.toml
index e122bbbeb..3d336a9b4 100644
--- a/crates/assert_eq_text/Cargo.toml
+++ b/crates/test_utils/Cargo.toml
@@ -1,5 +1,5 @@
1[package] 1[package]
2name = "assert_eq_text" 2name = "test_utils"
3version = "0.1.0" 3version = "0.1.0"
4authors = ["Aleksey Kladov <[email protected]>"] 4authors = ["Aleksey Kladov <[email protected]>"]
5 5
diff --git a/crates/assert_eq_text/src/lib.rs b/crates/test_utils/src/lib.rs
index 26b9bfb38..26b9bfb38 100644
--- a/crates/assert_eq_text/src/lib.rs
+++ b/crates/test_utils/src/lib.rs