just 1.50.0

🤖 Just a command runner
Documentation
use super::*;

#[test]
fn windows_shell_setting() {
  Test::new()
    .justfile(
      "
        set windows-shell := ['pwsh.exe', '-NoLogo', '-Command']
        set shell := ['asdfasdfasdfasdf']

        foo:
          Write-Output bar
      ",
    )
    .shell(false)
    .stdout("bar\r\n")
    .stderr("Write-Output bar\n")
    .success();
}

#[test]
fn windows_powershell_setting_uses_powershell_set_shell() {
  Test::new()
    .justfile(
      "
        set windows-powershell
        set shell := ['asdfasdfasdfasdf']

        foo:
          Write-Output bar
      ",
    )
    .shell(false)
    .stdout("bar\r\n")
    .stderr("Write-Output bar\n")
    .success();
}

#[test]
fn windows_powershell_setting_uses_powershell() {
  Test::new()
    .justfile(
      "
        set windows-powershell

        foo:
          Write-Output bar
      ",
    )
    .shell(false)
    .stdout("bar\r\n")
    .stderr("Write-Output bar\n")
    .success();
}