Fix acceptance test for removed section
The 199 PR updated ini_setting to remove empty sections after the last value is removed. This fixes the acceptance test.
This commit is contained in:
parent
af9de61afc
commit
f77ab45542
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ describe 'ini_setting resource' do
|
||||||
it { should be_file }
|
it { should be_file }
|
||||||
its(:content) {
|
its(:content) {
|
||||||
should match /four = five/
|
should match /four = five/
|
||||||
should match /\[one\]/
|
should_not match /\[one\]/
|
||||||
should_not match /two = three/
|
should_not match /two = three/
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue