forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyInvocation.Tests.ps1
More file actions
45 lines (36 loc) · 1.38 KB
/
Copy pathMyInvocation.Tests.ps1
File metadata and controls
45 lines (36 loc) · 1.38 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
Describe 'Testing of MyInvocation' -Tags "CI" {
It 'MyInvocation works in Function' {
function myfunc
{
$MyInvocation.Line.IndexOf("myfunc") | Should BeGreaterThan -1
}
{ . myfunc } | Should Not Throw
{& myfunc } | Should Not Throw
}
It 'MyInvocation works in Filter' {
filter myfilter
{
$MyInvocation.Line.IndexOf("myfilter") | Should BeGreaterThan -1
}
{. myfilter } | Should Not Throw
{ & myfilter } | Should Not Throw
}
Context 'MyInvocation works in Script block' {
It 'MyInvocation works in dot sourced Script block' {
$a = . {$MyInvocation.Line}
$a.IndexOf('$a = . {$MyInvocation.Line}') | Should BeGreaterThan -1
}
It 'MyInvocation works in & Script block2' {
$a = & {$MyInvocation.Line}
$a.IndexOf('$a = & {$MyInvocation.Line}') | Should BeGreaterThan -1
}
It 'MyInvocation works when run Script file' {
$a = & {$MyInvocation.ScriptName}
$a.ToLower().IndexOf("myinvocation.tests.ps1") | Should BeGreaterThan -1
}
It 'MyInvocation works when dot source Script file' {
$a = . {$MyInvocation.ScriptName}
$a.ToLower().IndexOf("myinvocation.tests.ps1") | Should BeGreaterThan -1
}
}
}