This commit is contained in:
Nikita Bykov
2020-10-19 09:41:36 +03:00
7 changed files with 36 additions and 9 deletions

View File

@@ -35,4 +35,10 @@ Describe "Python" {
It "Pipx is available" {
"pipx --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
}
}