mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-16 06:46:48 +00:00
13 lines
351 B
PowerShell
13 lines
351 B
PowerShell
Describe "PHP" {
|
|
It "Check <ToolName> in the PATH" -TestCases @(
|
|
@{ ToolName = "php" }
|
|
@{ ToolName = "composer" }
|
|
) {
|
|
"$ToolName --version" | Should -ReturnZeroExitCode
|
|
}
|
|
|
|
It "PHP Environment variables is set." {
|
|
${env:PHPROOT} | Should -Not -BeNullOrEmpty
|
|
${env:PHPROOT} | Should -Exist
|
|
}
|
|
} |