1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
package shquot
import (
"testing"
)
func TestViaPowerShell(t *testing.T) {
tests := []qTest{
{
[]string{},
"",
},
{
[]string{"cmd.exe"},
`& Start-Process -FilePath "cmd.exe"`,
},
{
[]string{"cmd.exe", "/c", "echo hello"},
"& Start-Process -FilePath \"cmd.exe\" -ArgumentList \"/c `\"echo hello`\"\"",
},
{
[]string{"echo", "hello $name"},
"& Start-Process -FilePath \"echo\" -ArgumentList \"`\"hello `$name`\"\"",
},
}
runTests(t, tests, ViaPowerShell(WindowsArgvSplit))
}
|