Replace code with pre-existing shared_example

Noticed this when I was testing the module out with a FreeBSD host this code duplicates the shared_example used in the rest of the spec, so I DRY'd it up! 👍
This commit is contained in:
Peter Souter 2015-01-11 19:45:27 -08:00
父節點 6d43adb26a
當前提交 9280f81be5

查看文件

@ -72,13 +72,7 @@ describe 'ini_setting resource' do
apply_manifest(pp, :catch_changes => true)
end
describe file("#{tmpdir}/ini_setting.ini") do
it { should be_file }
#XXX Solaris 10 doesn't support multi-line grep
it("should contain four = five\n[one]\ntwo = three", :unless => fact('osfamily') == 'Solaris') {
should contain("four = five\n[one]\ntwo = three")
}
end
it_behaves_like 'has_content', "#{tmpdir}/ini_setting.ini", pp, "four = five\n[one]\ntwo = three"
end
context '=> absent for key/value' do