PowerShell/test/powershell/Language/Interop/DotNet/DotNetInterop.Tests.ps1
James Truher 9e225ccae2 changes tags for tests
Start using tags CI, Feature, Scenario
2016-07-27 12:06:51 -07:00

5 lines
175 B
PowerShell

Describe ".NET class interoperability" -Tags "CI" {
It "Should access types in System.Console" {
[System.Console]::TreatControlCAsInput | Should Be $false
}
}