1e01fb86bc
... because it was already deprecated in neutron[1]. [1] a6dbf97242caa3be646e8eb6b1502b5e59e123fd Change-Id: I90a205df7817a28574e494ec7e1d497ee320a493
28 lines
506 B
Ruby
28 lines
506 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::rootwrap' do
|
|
let :params do
|
|
{}
|
|
end
|
|
|
|
shared_examples 'neutron rootwrap' do
|
|
it 'configures rootwrap.conf' do
|
|
# Now this class doesn't have any effective parameters
|
|
end
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
|
|
context "on #{os}" do
|
|
let(:facts) do
|
|
facts.merge!(OSDefaults.get_facts({
|
|
}))
|
|
end
|
|
|
|
it_behaves_like 'neutron rootwrap'
|
|
end
|
|
end
|
|
end
|