Files
runner-images/images/win/scripts/Tests/PHP.Tests.ps1
2021-11-16 11:32:09 +03:00

17 lines
516 B
PowerShell

Describe "PHP" {
It "Check PHP version" {
$phpMajorMinor = (Get-ToolsetContent).php.version
$phpInstalledVersion = php --version | Select-String -Pattern "PHP $phpMajorMinor"
$phpInstalledVersion | Should -BeLike "*${phpMajorMinor}*"
}
It "Check Composer in the PATH" {
"composer --version" | Should -ReturnZeroExitCode
}
It "PHP Environment variables is set." {
${env:PHPROOT} | Should -Not -BeNullOrEmpty
${env:PHPROOT} | Should -Exist
}
}