File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ Describe "Settings Class" {
141141
142142 It " Should detect the parameter in a settings file" {
143143 $settings = New-Object - TypeName $settingsTypeName `
144- - ArgumentList ([System.IO.Path ]::Combine($project1Root , " ExplicitSettings .psd1" ))
144+ - ArgumentList ([System.IO.Path ]::Combine($project1Root , " CustomRulePathSettings .psd1" ))
145145 $settings.CustomRulePath.Count | Should Be 2
146146 }
147147 }
@@ -175,7 +175,7 @@ Describe "Settings Class" {
175175
176176 It " Should detect the parameter in a settings file" {
177177 $settings = New-Object - TypeName $settingsTypeName `
178- - ArgumentList ([System.IO.Path ]::Combine($project1Root , " ExplicitSettings .psd1" ))
178+ - ArgumentList ([System.IO.Path ]::Combine($project1Root , " CustomRulePathSettings .psd1" ))
179179 $settings.IncludeDefaultRules | Should Be $true
180180 }
181181 }
Original file line number Diff line number Diff line change 1+ @ {
2+ " CustomRulePath" = @ (" C:\rules\module1" , " C:\rules\module2" )
3+ " IncludeDefaultRules" = $true
4+ " RecurseCustomRulePath" = $true
5+ }
You can’t perform that action at this time.
0 commit comments