Files
runner-images-sangeeth/images/macos/tests/PHP.Tests.ps1
T

15 lines
369 B
PowerShell
Raw Normal View History

Describe "PHP" {
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
}
}
}