[macOS] Add openssl 1.1 back

This commit is contained in:
sarathrajsrinivasan
2024-11-07 19:02:19 -06:00
parent b4c921107c
commit 84c4b32b94
2 changed files with 15 additions and 20 deletions

View File

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