forked from pester/Pester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExist.Tests.ps1
More file actions
51 lines (39 loc) · 1.61 KB
/
Exist.Tests.ps1
File metadata and controls
51 lines (39 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Set-StrictMode -Version Latest
InPesterModuleScope {
Describe "Should -Exist" {
It "returns true for paths that exist" {
"TestDrive:\" | Should -Exist
}
It "returns false for paths do not exist" {
"TestDrive:\nonexistant" | Should -Not -Exist
}
It 'works for path with literal [ ] characters' {
New-Item -Path "TestDrive:\[test].txt" -ItemType File | Out-Null
"TestDrive:\[test].txt" | Should -Exist
}
It 'returns correct result for function drive' {
function f1 {
}
'function:f1' | Should -Exist
}
It 'returns correct result for env drive' {
$env:test = 'somevalue'
'env:test' | Should -Exist
}
It 'returns correct result for env drive' {
$env:test = 'somevalue'
'env:test' | Should -Exist
}
It 'returns correct assertion message' {
$err = { 'c:\nonexistingpath' | Should -Exist -Because 'reason' } | Verify-AssertionFailed
$err.Exception.Message | Verify-Equal "Expected path 'c:\nonexistingpath' to exist, because reason, but it did not exist."
}
}
Describe "Should -Not -Exist" {
It 'returns correct assertion message' {
$currentPath = $pwd.Path
$err = { $currentPath | Should -Not -Exist -Because 'reason' } | Verify-AssertionFailed
$err.Exception.Message -replace [regex]::Escape($currentPath), 'path' | Verify-Equal "Expected path 'path' to not exist, because reason, but it did exist."
}
}
}