Remove a bunch of 3rdparty modules that seem unused
[mirror/dsa-puppet.git] / 3rdparty / modules / cinder / spec / classes / cinder_volume_spec.rb
diff --git a/3rdparty/modules/cinder/spec/classes/cinder_volume_spec.rb b/3rdparty/modules/cinder/spec/classes/cinder_volume_spec.rb
deleted file mode 100644 (file)
index 4b3cc14..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-require 'spec_helper'
-
-describe 'cinder::volume' do
-
-  let :pre_condition do
-    'class { "cinder": rabbit_password => "fpp", database_connection => "mysql://a:b@c/d" }'
-  end
-
-  let :facts do
-    {:osfamily => 'Debian'}
-  end
-
-  it { should contain_package('cinder-volume').with_ensure('present') }
-  it { should contain_service('cinder-volume').with(
-      'hasstatus' => true
-  )}
-
-  describe 'with manage_service false' do
-    let :params do
-      { 'manage_service' => false }
-    end
-    it 'should not change the state of the service' do
-      should contain_service('cinder-volume').without_ensure
-    end
-  end
-end