diff options
author | Aleksey Kladov <[email protected]> | 2018-08-17 17:54:08 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-08-17 17:54:08 +0100 |
commit | ed7ae78c6fd9e508f6e959c6a164cf8481f6b377 (patch) | |
tree | 556e8d4daffefa64dcdc5db8e75299514a0e85e4 /crates/libeditor/tests/test.rs | |
parent | 41570f60bf268c97223a864b8aa11a339929f55a (diff) |
ServerWorld
Diffstat (limited to 'crates/libeditor/tests/test.rs')
-rw-r--r-- | crates/libeditor/tests/test.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/crates/libeditor/tests/test.rs b/crates/libeditor/tests/test.rs index df4cb65d1..cc4226710 100644 --- a/crates/libeditor/tests/test.rs +++ b/crates/libeditor/tests/test.rs | |||
@@ -1,11 +1,8 @@ | |||
1 | extern crate libeditor; | 1 | extern crate libeditor; |
2 | extern crate libsyntax2; | 2 | extern crate libsyntax2; |
3 | extern crate itertools; | ||
4 | #[macro_use] | 3 | #[macro_use] |
5 | extern crate assert_eq_text; | 4 | extern crate assert_eq_text; |
6 | 5 | ||
7 | use std::fmt; | ||
8 | use itertools::Itertools; | ||
9 | use assert_eq_text::{assert_eq_dbg}; | 6 | use assert_eq_text::{assert_eq_dbg}; |
10 | use libeditor::{ | 7 | use libeditor::{ |
11 | File, TextUnit, TextRange, ActionResult, CursorPosition, | 8 | File, TextUnit, TextRange, ActionResult, CursorPosition, |
@@ -119,6 +116,11 @@ fn test_add_derive() { | |||
119 | |file, off| add_derive(file, off).map(|f| f()), | 116 | |file, off| add_derive(file, off).map(|f| f()), |
120 | ); | 117 | ); |
121 | check_action( | 118 | check_action( |
119 | "struct Foo { <|> a: i32, }", | ||
120 | "#[derive(<|>)]\nstruct Foo { a: i32, }", | ||
121 | |file, off| add_derive(file, off).map(|f| f()), | ||
122 | ); | ||
123 | check_action( | ||
122 | "#[derive(Clone)]\nstruct Foo { a: i32<|>, }", | 124 | "#[derive(Clone)]\nstruct Foo { a: i32<|>, }", |
123 | "#[derive(Clone<|>)]\nstruct Foo { a: i32, }", | 125 | "#[derive(Clone<|>)]\nstruct Foo { a: i32, }", |
124 | |file, off| add_derive(file, off).map(|f| f()), | 126 | |file, off| add_derive(file, off).map(|f| f()), |