2020-10-09 09:37:58 +03:00
|
|
|
Describe "PipxPackages" {
|
|
|
|
|
$pipxToolset = (Get-ToolsetContent).pipx
|
2020-10-09 11:31:54 +03:00
|
|
|
$testCases = $pipxToolset | ForEach-Object { @{package = $_.package; cmd = $_.cmd} }
|
|
|
|
|
It "<package>" -TestCases $testCases {
|
|
|
|
|
"$cmd" | Should -ReturnZeroExitCode
|
2020-10-08 16:57:24 +03:00
|
|
|
}
|
|
|
|
|
}
|