You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chd/set-WindowsSettings.tests.ps1

10 lines
325 B

import-module .\set-windowssettings.ps1
Describe 'Windows Setting Tests' {
Context 'Verify that registry logic works.' {
It 'can create registry keys' {
set-RegistryValue -path HKLM:\testFolder -name testDword
test-path -Path HKLM:\testFolder\testDword| Should be $true
}
}
}