Remove a bunch of 3rdparty modules that seem unused
[mirror/dsa-puppet.git] / 3rdparty / modules / nova / spec / classes / nova_config_spec.rb
diff --git a/3rdparty/modules/nova/spec/classes/nova_config_spec.rb b/3rdparty/modules/nova/spec/classes/nova_config_spec.rb
deleted file mode 100644 (file)
index 9bfe92a..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-require 'spec_helper'
-
-describe 'nova::config' do
-
-  let :params do
-    { :nova_config => {
-        'DEFAULT/foo' => { 'value'  => 'fooValue' },
-        'DEFAULT/bar' => { 'value'  => 'barValue' },
-        'DEFAULT/baz' => { 'ensure' => 'absent' }
-      },
-      :nova_paste_api_ini => {
-        'DEFAULT/foo2' => { 'value'  => 'fooValue' },
-        'DEFAULT/bar2' => { 'value'  => 'barValue' },
-        'DEFAULT/baz2' => { 'ensure' => 'absent' }
-      }
-    }
-  end
-
-  it 'configures arbitrary nova configurations' do
-    should contain_nova_config('DEFAULT/foo').with_value('fooValue')
-    should contain_nova_config('DEFAULT/bar').with_value('barValue')
-    should contain_nova_config('DEFAULT/baz').with_ensure('absent')
-  end
-
-  it 'configures arbitrary nova api-paste configurations' do
-    should contain_nova_paste_api_ini('DEFAULT/foo2').with_value('fooValue')
-    should contain_nova_paste_api_ini('DEFAULT/bar2').with_value('barValue')
-    should contain_nova_paste_api_ini('DEFAULT/baz2').with_ensure('absent')
-  end
-end