X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fcinder%2Fspec%2Fclasses%2Fcinder_volume_spec.rb;fp=3rdparty%2Fmodules%2Fcinder%2Fspec%2Fclasses%2Fcinder_volume_spec.rb;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=4b3cc14bdd0761ede656981c286180029d48cc7a;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git 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 index 4b3cc14bd..000000000 --- a/3rdparty/modules/cinder/spec/classes/cinder_volume_spec.rb +++ /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