Remove a bunch of 3rdparty modules that seem unused
[mirror/dsa-puppet.git] / 3rdparty / modules / cinder / spec / defines / cinder_backend_emc_vnx_spec.rb
diff --git a/3rdparty/modules/cinder/spec/defines/cinder_backend_emc_vnx_spec.rb b/3rdparty/modules/cinder/spec/defines/cinder_backend_emc_vnx_spec.rb
deleted file mode 100644 (file)
index e5031bb..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-require 'spec_helper'
-
-describe 'cinder::backend::emc_vnx' do
-  let (:title) { 'emc' }
-
-  let :req_params do
-    {
-      :san_ip                => '127.0.0.2',
-      :san_login             => 'emc',
-      :san_password          => 'password',
-      :iscsi_ip_address      => '127.0.0.3',
-      :storage_vnx_pool_name => 'emc-storage-pool'
-    }
-  end
-
-  let :facts do
-    {:osfamily => 'Redhat' }
-  end
-
-  let :params do
-    req_params
-  end
-
-  describe 'emc vnx volume driver' do
-    it 'configure emc vnx volume driver' do
-      should contain_cinder_config('emc/volume_driver').with_value('cinder.volume.drivers.emc.emc_cli_iscsi.EMCCLIISCSIDriver')
-      should contain_cinder_config('emc/san_ip').with_value('127.0.0.2')
-      should contain_cinder_config('emc/san_login').with_value('emc')
-      should contain_cinder_config('emc/san_password').with_value('password')
-      should contain_cinder_config('emc/iscsi_ip_address').with_value('127.0.0.3')
-      should contain_cinder_config('emc/storage_vnx_pool_name').with_value('emc-storage-pool')
-    end
-  end
-end