use super::*; #[tokio::test(flavor = "multi_thread")] async fn auto_indent_c() -> anyhow::Result<()> { test_with_config( Args { files: vec![(PathBuf::from("foo.c"), Position::default())], ..Default::default() }, helpers::test_config(), helpers::test_syntax_conf(None), // switches to append mode? ( helpers::platform_line("void foo() {#[|}]#"), "i", helpers::platform_line(indoc! {"\ void foo() { #[|\n]#\ } "}), ), ) .await?; Ok(()) }