PowerShell - hello-world

This commit is contained in:
Xevion
2021-11-26 00:59:55 -06:00
parent 9676e3704d
commit e02f2ceabf
8 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
BeforeAll {
. ".\HelloWorld.ps1"
}
Describe "HelloWorldTest" {
It "Outputs: 'Hello, World!'" {
Get-HelloWorld | Should -Be 'Hello, World!'
}
}