Merge pull request #275 from enovance/bug/205/sbadia

Fix spec issues with puppet 2.7 and ruby 1.8
This commit is contained in:
Emilien Macchi
2014-02-19 16:56:08 +01:00
4 changed files with 4 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ describe 'cloud::cache' do
it 'configure memcached with some params' do
should contain_class('memcached').with(
:listen_ip => '10.0.0.1',
:max_memory => '60%',
:max_memory => '60%'
)
end
end

View File

@@ -219,7 +219,7 @@ describe 'cloud::compute::hypervisor' do
should contain_class('nova::compute::libvirt').with(
:libvirt_type => 'kvm',
:vncserver_listen => '0.0.0.0',
:migration_support => true,
:migration_support => true
)
end

View File

@@ -102,7 +102,7 @@ describe 'cloud::telemetry::server' do
should contain_class('ceilometer::expirer').with(
:time_to_live => '2592000',
:minute => '0',
:hour => '0',
:hour => '0'
)
end

View File

@@ -69,7 +69,7 @@ describe 'cloud::volume::storage' do
it 'configure cinder volume with rbd backend' do
should include_class('cinder::volume')
should contain_class('cinder::volume')
should contain_class('cinder::volume::rbd').with(
:rbd_pool => 'ceph_cinder',