mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 07:04:29 +00:00
Create a test that reproduces fish-shell/fish-shell#10703
This commit is contained in:
parent
f8a720da8c
commit
a979b6341d
1 changed files with 9 additions and 0 deletions
|
@ -126,6 +126,7 @@ fn test_expand() {
|
|||
// lol
|
||||
// nub
|
||||
// q
|
||||
// zzz
|
||||
// .foo
|
||||
// aaa
|
||||
// aaa2
|
||||
|
@ -144,6 +145,7 @@ fn test_expand() {
|
|||
std::fs::write("test/fish_expand_test/baz/xxx", []).unwrap();
|
||||
std::fs::write("test/fish_expand_test/baz/yyy", []).unwrap();
|
||||
std::fs::write("test/fish_expand_test/lol/nub/q", []).unwrap();
|
||||
std::fs::write("test/fish_expand_test/lol/nub/zzz", []).unwrap();
|
||||
std::fs::write("test/fish_expand_test/aaa2/x", []).unwrap();
|
||||
|
||||
// This is checking that .* does NOT match . and ..
|
||||
|
@ -291,6 +293,13 @@ fn test_expand() {
|
|||
"Wrong fuzzy matching 3"
|
||||
);
|
||||
|
||||
expand_test!(
|
||||
"test/fish_expand_test/*/nu/zz",
|
||||
fuzzy_comp,
|
||||
(format!("test/fish_expand_test/{any_str_str}/nub/zzz")),
|
||||
"Glob did not expand correctly with more than one path item after the *"
|
||||
);
|
||||
|
||||
expand_test!(
|
||||
"test/fish_expand_test/b/yyy",
|
||||
fuzzy_comp,
|
||||
|
|
Loading…
Reference in a new issue