Skip to content

Commit

Permalink
Add relevant test files
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapil Borle committed Jun 5, 2017
1 parent 86753fe commit 06a4ade
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 0 deletions.
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"
};
}
}

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"
};
}
}

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" {

}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@{
property1 = "value1"
property2 = "value2"
property3 = "value3"
}

0 comments on commit 06a4ade

Please sign in to comment.