Files
runner-images/images/macos/tests/PHP.Tests.ps1
2021-09-24 13:56:16 +03:00

17 lines
413 B
PowerShell

$os = Get-OSVersion
Describe "PHP" -Skip:($os.IsMonterey) {
Context "PHP" {
It "PHP Path" {
Get-WhichTool "php" | Should -Not -BeLike "/usr/bin/php*"
}
It "PHP version" {
"php --version" | Should -ReturnZeroExitCode
}
}
Context "Composer" {
It "Composer" {
"composer --version" | Should -ReturnZeroExitCode
}
}
}