X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Finifile%2Fspec%2Fclasses%2Fcreate_ini_settings_test_spec.rb;fp=3rdparty%2Fmodules%2Finifile%2Fspec%2Fclasses%2Fcreate_ini_settings_test_spec.rb;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=4e6683aa0d7eec83892400f010881f6b0ac03460;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/inifile/spec/classes/create_ini_settings_test_spec.rb b/3rdparty/modules/inifile/spec/classes/create_ini_settings_test_spec.rb deleted file mode 100644 index 4e6683aa0..000000000 --- a/3rdparty/modules/inifile/spec/classes/create_ini_settings_test_spec.rb +++ /dev/null @@ -1,25 +0,0 @@ -require 'spec_helper' -# end-to-end test of the create_init_settings function -describe 'create_ini_settings_test' do - it { should have_ini_setting_resource_count(3) } - it { should contain_ini_setting('[section1] setting1').with( - :ensure => 'present', - :section => 'section1', - :setting => 'setting1', - :value => 'val1', - :path => '/tmp/foo.ini' - )} - it { should contain_ini_setting('[section2] setting2').with( - :ensure => 'present', - :section => 'section2', - :setting => 'setting2', - :value => 'val2', - :path => '/tmp/foo.ini' - )} - it { should contain_ini_setting('[section2] setting3').with( - :ensure => 'absent', - :section => 'section2', - :setting => 'setting3', - :path => '/tmp/foo.ini' - )} -end