X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fglance%2Fspec%2Fclasses%2Fglance_client_spec.rb;fp=3rdparty%2Fmodules%2Fglance%2Fspec%2Fclasses%2Fglance_client_spec.rb;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=158b23fbadec7b6362da574ae09dd90ef38d5455;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/glance/spec/classes/glance_client_spec.rb b/3rdparty/modules/glance/spec/classes/glance_client_spec.rb deleted file mode 100644 index 158b23fba..000000000 --- a/3rdparty/modules/glance/spec/classes/glance_client_spec.rb +++ /dev/null @@ -1,28 +0,0 @@ -require 'spec_helper' - -describe 'glance::client' do - - shared_examples 'glance client' do - it { should contain_class('glance::params') } - it { should contain_package('python-glanceclient').with( - :name => 'python-glanceclient', - :ensure => 'present', - :tag => ['openstack'], - ) - } - end - - context 'on Debian platforms' do - let :facts do - { :osfamily => 'Debian' } - end - include_examples 'glance client' - end - - context 'on RedHat platforms' do - let :facts do - { :osfamily => 'RedHat' } - end - include_examples 'glance client' - end -end