lib/Pester/3.3.14/Functions/Assertions/Exist.ps1
function PesterExist($value) { & $SafeCommands['Test-Path'] $value } function PesterExistFailureMessage($value) { return "Expected: {$value} to exist" } function NotPesterExistFailureMessage($value) { return "Expected: ${value} to not exist, but it was found" } |