brought in submodule changes and modded test to not expect the / to be removed in the path

This commit is contained in:
Zachary Folwick 2015-08-21 14:34:00 -07:00
parent 2689741ddc
commit 8458e5779e
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 0a5744c8da185fdde71fe7df7424978875476fb9
Subproject commit 4e2140b9436b5e5978752539ad06dbb0828f9b7e

View file

@ -29,9 +29,9 @@
Split-Path "abadTest" -Qualifier -ErrorAction SilentlyContinue | Should Throw
}
It "Should return the path minus the drive when the noqualifier switch is used" {
It "Should return the path when the noqualifier switch is used on a linux system" {
{ Split-Path /usr/bin -NoQualifier } | Should Not Throw
Split-Path /usr/bin -NoQualifier | Should Be "usr/bin"
Split-Path /usr/bin -NoQualifier | Should Be "/usr/bin"
}
It "Should return the parent folder name when the leaf switch is used" {