Files
runner-images/images/windows/scripts/tests/PHP.Tests.ps1
T

17 lines
516 B
PowerShell
Raw Normal View History

Describe "PHP" {
2021-11-16 11:32:09 +03:00
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
}
2021-11-16 11:32:09 +03:00
}