Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/test/movement.rs')
| -rw-r--r-- | helix-term/tests/test/movement.rs | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/helix-term/tests/test/movement.rs b/helix-term/tests/test/movement.rs index 062d3796..3fa85092 100644 --- a/helix-term/tests/test/movement.rs +++ b/helix-term/tests/test/movement.rs @@ -107,14 +107,6 @@ async fn surround_by_character() -> anyhow::Result<()> { )) .await?; - // Selection direction is preserved - test(( - "(so [many {go#[|od]#} text] here)", - "mi{", - "(so [many {#[|good]#} text] here)", - )) - .await?; - Ok(()) } @@ -374,41 +366,6 @@ async fn surround_around_pair() -> anyhow::Result<()> { Ok(()) } -#[tokio::test(flavor = "multi_thread")] -async fn match_around_closest_ts() -> anyhow::Result<()> { - test_with_config( - AppBuilder::new().with_file("foo.rs", None), - ( - r#"fn main() {testing!{"f#[|oo]#)"};}"#, - "mam", - r#"fn main() {testing!{#[|"foo)"]#};}"#, - ), - ) - .await?; - - test_with_config( - AppBuilder::new().with_file("foo.rs", None), - ( - r##"fn main() { let _ = ("#[|1]#23", "#(|1)#23"); } "##, - "3mam", - r##"fn main() #[|{ let _ = ("123", "123"); }]# "##, - ), - ) - .await?; - - test_with_config( - AppBuilder::new().with_file("foo.rs", None), - ( - r##" fn main() { let _ = ("12#[|3", "12]#3"); } "##, - "1mam", - r##" fn main() { let _ = #[|("123", "123")]#; } "##, - ), - ) - .await?; - - Ok(()) -} - /// Ensure the very initial cursor in an opened file is the width of /// the first grapheme #[tokio::test(flavor = "multi_thread")] |