mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
* dotnet cmd codeql tests * fixed dotnet tests, added codeql to toolset * changed codeql version to wildcard * removed unused import and a test call * tmp * lowercase file name * removed sourcing invoke-tests Co-authored-by: Leonid Lapshin <originalnoe-nazvanie@yandex.ru>
14 lines
349 B
PowerShell
14 lines
349 B
PowerShell
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
|
|
$cmd = (Get-ToolsetContent).apt.cmd_packages
|
|
|
|
Describe "Apt" {
|
|
|
|
$testCases = $cmd | ForEach-Object {
|
|
@{ toolName = $_ }
|
|
}
|
|
|
|
It "<toolName> is available" -TestCases $testCases {
|
|
(Get-Command -Name $toolName).CommandType | Should -BeExactly "Application"
|
|
}
|
|
} |