aboutsummaryrefslogtreecommitdiff
path: root/helix-term/tests/test/auto_pairs.rs
blob: 52fee55e50d27d317ae34029bfbc65d038f3312f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use super::*;

#[tokio::test]
async fn auto_pairs_basic() -> anyhow::Result<()> {
    test_key_sequence_text_result(
        Args::default(),
        Config::default(),
        ("#[\n|]#", "i(<esc>", "(#[|)]#\n"),
    )
    .await?;

    test_key_sequence_text_result(
        Args::default(),
        Config {
            editor: helix_view::editor::Config {
                auto_pairs: AutoPairConfig::Enable(false),
                ..Default::default()
            },
            ..Default::default()
        },
        ("#[\n|]#", "i(<esc>", "(#[|\n]#"),
    )
    .await?;

    Ok(())
}