aboutsummaryrefslogblamecommitdiff
path: root/helix-term/tests/test/auto_indent.rs
blob: 2d9082853dcf3f8f47fe1c76357ca4260aed10e5 (plain) (tree)
1
2
3
4
5
6
7
8
9
             
                                       
                                                
                     


                                                                       
                               
                                        
                                   
                                                                  
                          
                                             

                            
                      
          
            

          
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() {#[|}]#").as_ref(),
            "i<ret><esc>",
            helpers::platform_line(indoc! {"\
                void foo() {
                  #[|\n]#\
                }
            "})
            .as_ref(),
        ),
    )
    .await?;

    Ok(())
}