Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/test/auto_indent.rs')
| -rw-r--r-- | helix-term/tests/test/auto_indent.rs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/helix-term/tests/test/auto_indent.rs b/helix-term/tests/test/auto_indent.rs deleted file mode 100644 index 5ea1024b..00000000 --- a/helix-term/tests/test/auto_indent.rs +++ /dev/null @@ -1,21 +0,0 @@ -use super::*; - -#[tokio::test(flavor = "multi_thread")] -async fn auto_indent_c() -> anyhow::Result<()> { - test_with_config( - AppBuilder::new().with_file("foo.c", None), - // switches to append mode? - ( - "void foo() {#[|}]#", - "i<ret><esc>", - indoc! {"\ - void foo() { - #[|\n]#\ - } - "}, - ), - ) - .await?; - - Ok(()) -} |