diff options
author | Skyler Hawthorne | 2022-04-17 04:19:22 +0000 |
---|---|---|
committer | Skyler Hawthorne | 2022-06-19 03:54:03 +0000 |
commit | 267605d147587e120d765fa62333dd986a3cb5e6 (patch) | |
tree | babb91a4d4911ec9d4ea5f9707686d7036b5ee28 /helix-term/tests/integration/auto_pairs.rs | |
parent | 84bbe6b8f3aa23f3f9f1d8b38844efba6af17b41 (diff) |
reorganize tests into groups
Diffstat (limited to 'helix-term/tests/integration/auto_pairs.rs')
-rw-r--r-- | helix-term/tests/integration/auto_pairs.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/helix-term/tests/integration/auto_pairs.rs b/helix-term/tests/integration/auto_pairs.rs new file mode 100644 index 00000000..4da44d45 --- /dev/null +++ b/helix-term/tests/integration/auto_pairs.rs @@ -0,0 +1,24 @@ +use super::*; + +#[tokio::test] +async fn auto_pairs_basic() -> anyhow::Result<()> { + test_key_sequence_text_result( + Args::default(), + Config::default(), + ("#[\n|]#", "i(<esc>", "(#[|)]#\n"), + )?; + + 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]#"), + )?; + + Ok(()) +} |