
it should not be set to true by default b/c quantum is true and this is not compatible. Change-Id: I9d6d26070c4f14a832961baf32c66baeb1d000d1
10 lines
299 B
Ruby
10 lines
299 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'openstack::test_file' do
|
|
it do
|
|
should contain_file('/tmp/test_nova.sh').with_mode('0751')
|
|
should_not contain_file('/tmp/test_nova.sh').with_content(/add-floating-ip/)
|
|
should contain_file('/tmp/test_nova.sh').with_content(/floatingip-create/)
|
|
end
|
|
end
|