-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create Pester test for installing AST
- Loading branch information
1 parent
703f157
commit 6676866
Showing
4 changed files
with
25 additions
and
27 deletions.
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
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# temp placeholder for a real test | ||
Describe "Build Sign Release Check" { | ||
It "Should Have Trivial Test" { | ||
$false | Should -BeFalse | ||
Describe "Install AST Check" { | ||
It "Should be installed" { | ||
$ToolPath = (Get-Command AzureSignTool).Path | ||
Write-Warning "The path to AzureSignTool is $ToolPath" | ||
Test-Path -Path $TooPath | Should -Be -True | ||
} | ||
} |
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
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