2021-05-11 22:21:49 +03:00
|
|
|
#[cfg(windows)]
|
|
|
|
test! {
|
|
|
|
name: powershell,
|
|
|
|
justfile: r#"
|
|
|
|
default:
|
|
|
|
#!powershell
|
|
|
|
Write-Host Hello-World
|
|
|
|
"#,
|
|
|
|
stdout: "Hello-World\n",
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
test! {
|
|
|
|
name: powershell_exe,
|
|
|
|
justfile: r#"
|
|
|
|
default:
|
|
|
|
#!powershell.exe
|
|
|
|
Write-Host Hello-World
|
|
|
|
"#,
|
|
|
|
stdout: "Hello-World\n",
|
|
|
|
}
|
2021-05-16 08:33:41 +03:00
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
test! {
|
|
|
|
name: cmd,
|
|
|
|
justfile: r#"
|
|
|
|
default:
|
|
|
|
#!cmd /c
|
|
|
|
@echo Hello-World
|
|
|
|
"#,
|
|
|
|
stdout: "Hello-World\r\n",
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
test! {
|
|
|
|
name: cmd_exe,
|
|
|
|
justfile: r#"
|
|
|
|
default:
|
|
|
|
#!cmd.exe /c
|
|
|
|
@echo Hello-World
|
|
|
|
"#,
|
|
|
|
stdout: "Hello-World\r\n",
|
|
|
|
}
|