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" {
141
141
142
142
It " Should detect the parameter in a settings file" {
143
143
$settings = New-Object - TypeName $settingsTypeName `
144
- - ArgumentList ([System.IO.Path ]::Combine($project1Root , " ExplicitSettings .psd1" ))
144
+ - ArgumentList ([System.IO.Path ]::Combine($project1Root , " CustomRulePathSettings .psd1" ))
145
145
$settings.CustomRulePath.Count | Should Be 2
146
146
}
147
147
}
@@ -175,7 +175,7 @@ Describe "Settings Class" {
175
175
176
176
It " Should detect the parameter in a settings file" {
177
177
$settings = New-Object - TypeName $settingsTypeName `
178
- - ArgumentList ([System.IO.Path ]::Combine($project1Root , " ExplicitSettings .psd1" ))
178
+ - ArgumentList ([System.IO.Path ]::Combine($project1Root , " CustomRulePathSettings .psd1" ))
179
179
$settings.IncludeDefaultRules | Should Be $true
180
180
}
181
181
}
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