[macOS] Add openssl@1.1 using old homebrew commit (#10935)

This commit is contained in:
sarathrajsrinivasan
2024-11-08 11:13:31 -08:00
committed by GitHub
parent a070c8516f
commit 6b5924aa06
2 changed files with 22 additions and 11 deletions

View File

@@ -7,6 +7,13 @@ Describe "OpenSSL" {
}
}
Context "OpenSSL 1.1 Path Check" {
It "OpenSSL 1.1 path exists" {
$openSSLpath = brew --prefix openssl@1.1
$openSSLpath | Should -Exist
}
}
Context "OpenSSL 1.1 is default" {
It "Default OpenSSL version is 1.1" {
$commandResult = Get-CommandResult "openssl version"