We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f6d89f commit 1e5c8cbCopy full SHA for 1e5c8cb
dsc/tests/dsc_resource_list.tests.ps1
@@ -84,10 +84,12 @@ Describe 'Tests for listing resources' {
84
}
85
86
It 'Capabilities are returned' {
87
- $resource = dsc resource list Microsoft/OSInfo | ConvertFrom-Json
+ $resource = dsc resource list Microsoft.DSC.Debug/Echo | ConvertFrom-Json
88
$LASTEXITCODE | Should -Be 0
89
- $resource.capabilities.Count | Should -Be 2
+ $resource.capabilities.Count | Should -Be 4
90
$resource.capabilities | Should -Contain 'get'
91
+ $resource.capabilities | Should -Contain 'set'
92
+ $resource.capabilities | Should -Contain 'test'
93
$resource.capabilities | Should -Contain 'export'
94
95
0 commit comments