forked from extern/nushell
Fix string interpolation is not working with external command (#3686)
This commit is contained in:
@ -368,4 +368,25 @@ mod external_command_arguments {
|
||||
},
|
||||
)
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn string_interpolation_with_an_external_command() {
|
||||
Playground::setup(
|
||||
"string_interpolation_with_an_external_command",
|
||||
|dirs, sandbox| {
|
||||
sandbox.mkdir("cd");
|
||||
|
||||
sandbox.with_files(vec![EmptyFile("cd/jonathan_likes_cake.txt")]);
|
||||
|
||||
let actual = nu!(
|
||||
cwd: dirs.test(), pipeline(
|
||||
r#"
|
||||
^ls $"(pwd)/cd"
|
||||
"#
|
||||
));
|
||||
|
||||
assert_eq!(actual.out, "jonathan_likes_cake.txt");
|
||||
},
|
||||
)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user