Remove a bunch of 3rdparty modules that seem unused
[mirror/dsa-puppet.git] / 3rdparty / modules / keystone / spec / classes / keystone_client_spec.rb
diff --git a/3rdparty/modules/keystone/spec/classes/keystone_client_spec.rb b/3rdparty/modules/keystone/spec/classes/keystone_client_spec.rb
deleted file mode 100644 (file)
index 2e58fad..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-require 'spec_helper'
-
-describe 'keystone::client' do
-
-  describe "with default parameters" do
-    it { is_expected.to contain_package('python-keystoneclient').with(
-        'ensure' => 'present',
-        'tag'    => 'openstack'
-    ) }
-  end
-
-  describe "with specified version" do
-    let :params do
-      {:ensure => '2013.1'}
-    end
-
-    it { is_expected.to contain_package('python-keystoneclient').with(
-        'ensure' => '2013.1',
-        'tag'    => 'openstack'
-    ) }
-  end
-end