mirror of
https://github.com/Xevion/exercism.git
synced 2025-12-12 22:11:36 -06:00
10 lines
149 B
PowerShell
10 lines
149 B
PowerShell
BeforeAll {
|
|
. ".\HelloWorld.ps1"
|
|
}
|
|
|
|
Describe "HelloWorldTest" {
|
|
It "Outputs: 'Hello, World!'" {
|
|
Get-HelloWorld | Should -Be 'Hello, World!'
|
|
}
|
|
}
|