Improve goto_file_impl (#9065)

This commit is contained in:
TornaxO7 2024-04-06 23:27:29 +02:00 committed by GitHub
parent 97afd67fca
commit e69292e5eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 70 additions and 19 deletions

View file

@ -153,6 +153,28 @@ async fn test_goto_file_impl() -> anyhow::Result<()> {
)
.await?;
// ';' is behind the path
test_key_sequence(
&mut AppBuilder::new().with_file(file.path(), None).build()?,
Some("iimport 'one.js';<esc>B;gf"),
Some(&|app| {
assert_eq!(1, match_paths(app, vec!["one.js"]));
}),
false,
)
.await?;
// allow numeric values in path
test_key_sequence(
&mut AppBuilder::new().with_file(file.path(), None).build()?,
Some("iimport 'one123.js'<esc>B;gf"),
Some(&|app| {
assert_eq!(1, match_paths(app, vec!["one123.js"]));
}),
false,
)
.await?;
Ok(())
}