PowerShell/test/powershell/engine/BasicEngine.Tests.ps1

8 lines
184 B
PowerShell

Describe 'Basic engine APIs' {
Context 'powershell::Create' {
It 'can create default instance' {
[powershell]::Create() | Should Not Be $null
}
}
}