-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kapil Borle
committed
Jun 5, 2017
1 parent
86753fe
commit c627165
Showing
5 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
test/PowerShellEditorServices.Test.Shared/Symbols/FindSymbolsInPSDFile.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
// | ||
|
||
namespace Microsoft.PowerShell.EditorServices.Test.Shared.Symbols | ||
{ | ||
public class FindSymbolsInPSDFile | ||
{ | ||
public static readonly ScriptRegion SourceDetails = | ||
new ScriptRegion | ||
{ | ||
File = @"Symbols\PowerShellDataFile.psd1" | ||
}; | ||
} | ||
} | ||
|
17 changes: 17 additions & 0 deletions
17
test/PowerShellEditorServices.Test.Shared/Symbols/FindSymbolsInPesterFile.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
// | ||
|
||
namespace Microsoft.PowerShell.EditorServices.Test.Shared.Symbols | ||
{ | ||
public class FindSymbolsInPesterFile | ||
{ | ||
public static readonly ScriptRegion SourceDetails = | ||
new ScriptRegion | ||
{ | ||
File = @"Symbols\PesterFile.tests.ps1" | ||
}; | ||
} | ||
} | ||
|
15 changes: 15 additions & 0 deletions
15
test/PowerShellEditorServices.Test.Shared/Symbols/PesterFile.tests.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Describe "A dummy test" { | ||
Context "When a pester file is given" { | ||
It "Should return it symbols" { | ||
|
||
} | ||
|
||
It "Should return context symbols" { | ||
|
||
} | ||
|
||
It "Should return describe symbols" { | ||
|
||
} | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
test/PowerShellEditorServices.Test.Shared/Symbols/PowerShellDataFile.psd1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@{ | ||
property1 = "value1" | ||
property2 = "value2" | ||
property3 = "value3" | ||
} |