add test for pip3 path

This commit is contained in:
Mikhail Timofeev
2020-10-16 15:19:57 +03:00
parent 0b6973e0d0
commit a58d9b4035

View File

@@ -31,4 +31,10 @@ Describe "Python" {
It "Pip 3 is available" { It "Pip 3 is available" {
"pip3 --version" | Should -ReturnZeroExitCode "pip3 --version" | Should -ReturnZeroExitCode
} }
It "Pip 3 and Python 3 came from the same brew formula" {
$pip3Path = Split-Path (readlink (which pip3))
$python3Path = Split-Path (readlink (which python3))
$pip3Path | Should -BeExactly $python3Path
}
} }