Skip to content

Commit 06a4ade

Browse files
author
Kapil Borle
committed
Add relevant test files
1 parent 86753fe commit 06a4ade

File tree

4 files changed

+54
-0
lines changed

4 files changed

+54
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
6+
namespace Microsoft.PowerShell.EditorServices.Test.Shared.Symbols
7+
{
8+
public class FindSymbolsInPSDFile
9+
{
10+
public static readonly ScriptRegion SourceDetails =
11+
new ScriptRegion
12+
{
13+
File = @"Symbols\PowerShellDataFile.psd1"
14+
};
15+
}
16+
}
17+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
6+
namespace Microsoft.PowerShell.EditorServices.Test.Shared.Symbols
7+
{
8+
public class FindSymbolsInPesterFile
9+
{
10+
public static readonly ScriptRegion SourceDetails =
11+
new ScriptRegion
12+
{
13+
File = @"Symbols\PesterFile.tests.ps1"
14+
};
15+
}
16+
}
17+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Describe "A dummy test" {
2+
Context "When a pester file is given" {
3+
It "Should return it symbols" {
4+
5+
}
6+
7+
It "Should return context symbols" {
8+
9+
}
10+
11+
It "Should return describe symbols" {
12+
13+
}
14+
}
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@{
2+
property1 = "value1"
3+
property2 = "value2"
4+
property3 = "value3"
5+
}

0 commit comments

Comments
 (0)