forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
394 B
Rust
19 lines
394 B
Rust
use super::*;
|
|
|
|
use helix_term::application::Application;
|
|
|
|
#[tokio::test]
|
|
async fn test_history_completion() -> anyhow::Result<()> {
|
|
test_key_sequence(
|
|
&mut Application::new(Args::default(), Config::default())?,
|
|
Some(":asdf<ret>:theme d<C-n><tab>"),
|
|
Some(&|app| {
|
|
assert!(!app.editor.is_err());
|
|
}),
|
|
false,
|
|
)
|
|
.await?;
|
|
|
|
Ok(())
|
|
}
|