mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Implement read command (#10447)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com> Co-authored-by: Ibrahim Dursun <ibrahim@dursun.cc>
This commit is contained in:
parent
521accaf00
commit
30baff907d
3 changed files with 67 additions and 1 deletions
|
@ -640,3 +640,27 @@ async fn test_join_selections_space() -> anyhow::Result<()> {
|
|||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn test_read_file() -> anyhow::Result<()> {
|
||||
let mut file = tempfile::NamedTempFile::new()?;
|
||||
let contents_to_read = "some contents";
|
||||
let output_file = helpers::temp_file_with_contents(contents_to_read)?;
|
||||
|
||||
test_key_sequence(
|
||||
&mut helpers::AppBuilder::new()
|
||||
.with_file(file.path(), None)
|
||||
.build()?,
|
||||
Some(&format!(":r {:?}<ret><esc>:w<ret>", output_file.path())),
|
||||
Some(&|app| {
|
||||
assert!(!app.editor.is_err(), "error: {:?}", app.editor.get_status());
|
||||
}),
|
||||
false,
|
||||
)
|
||||
.await?;
|
||||
|
||||
let expected_contents = LineFeedHandling::Native.apply(contents_to_read);
|
||||
helpers::assert_file_has_content(&mut file, &expected_contents)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue