mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Add test for :reload!
This commit is contained in:
parent
e47e401c68
commit
b9e8a29acf
1 changed files with 34 additions and 0 deletions
|
@ -775,6 +775,40 @@ async fn test_reload_no_force() -> anyhow::Result<()> {
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
|
async fn test_reload_force() -> anyhow::Result<()> {
|
||||||
|
let mut file = tempfile::NamedTempFile::new()?;
|
||||||
|
let mut app = helpers::AppBuilder::new()
|
||||||
|
.with_file(file.path(), None)
|
||||||
|
.with_input_text("hello#[ |]#")
|
||||||
|
.build()?;
|
||||||
|
|
||||||
|
file.as_file_mut().write_all(b"goodbye!")?;
|
||||||
|
|
||||||
|
test_key_sequences(
|
||||||
|
&mut app,
|
||||||
|
vec![
|
||||||
|
(Some("athere<esc>"), None),
|
||||||
|
(
|
||||||
|
Some(":reload!<ret>"),
|
||||||
|
Some(&|app| {
|
||||||
|
assert!(!app.editor.is_err());
|
||||||
|
|
||||||
|
let doc = app.editor.documents().next().unwrap();
|
||||||
|
assert!(!doc.is_modified());
|
||||||
|
assert_eq!(doc.text(), "goodbye!");
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
false,
|
||||||
|
)
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
helpers::assert_file_has_content(&mut file, "goodbye!")?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn test_reload_all_no_force() -> anyhow::Result<()> {
|
async fn test_reload_all_no_force() -> anyhow::Result<()> {
|
||||||
let file1 = tempfile::NamedTempFile::new()?;
|
let file1 = tempfile::NamedTempFile::new()?;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue