helix-mods/helix-term/tests/integration.rs

31 lines
628 B
Rust
Raw Normal View History

#[cfg(feature = "integration")]
mod integration {
2022-04-17 04:05:45 +02:00
mod helpers;
use std::path::PathBuf;
2021-10-26 11:03:03 +02:00
2022-04-17 04:05:45 +02:00
use helix_core::{syntax::AutoPairConfig, Position, Selection};
use helix_term::{args::Args, config::Config};
2021-10-26 11:03:03 +02:00
use indoc::indoc;
2021-10-26 11:03:03 +02:00
2022-04-17 04:05:45 +02:00
use self::helpers::*;
#[tokio::test]
async fn hello_world() -> anyhow::Result<()> {
test_key_sequence_text_result(
Args::default(),
Config::default(),
2022-04-17 04:05:45 +02:00
("#[\n|]#", "ihello world<esc>", "hello world#[|\n]#"),
)
.await?;
Ok(())
2021-10-26 11:03:03 +02:00
}
2022-04-17 06:19:22 +02:00
mod auto_indent;
mod auto_pairs;
mod movement;
mod write;
2021-10-26 11:03:03 +02:00
}