Test bare bash path in shebang on windows (#2144)

This commit is contained in:
Casey Rodarmor 2024-06-13 12:19:22 -07:00 committed by GitHub
parent 4f16428bcb
commit 637023e86f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 0 deletions

View File

@ -106,6 +106,8 @@ mod timestamps;
mod undefined_variables; mod undefined_variables;
mod unexport; mod unexport;
mod unstable; mod unstable;
#[cfg(windows)]
mod windows;
#[cfg(target_family = "windows")] #[cfg(target_family = "windows")]
mod windows_shell; mod windows_shell;
mod working_directory; mod working_directory;

15
tests/windows.rs Normal file
View File

@ -0,0 +1,15 @@
use super::*;
#[test]
fn bare_bash_in_shebang() {
Test::new()
.justfile(
"
default:
#!bash
echo FOO
",
)
.stdout("FOO\n")
.run();
}