PowerShell/test/powershell/Get-TraceSource.Tests.ps1
2016-06-03 13:53:20 -07:00

7 lines
196 B
PowerShell

Describe "Get-TraceSource" -tags "P1" {
It "Should output data sorted by name" {
$expected = (Get-TraceSource | Sort-Object Name)
Get-TraceSource | Should be $expected
}
}