
Supports configuration parameters for the following new network plugins: - Neutron (formerly the only option) - Neutron single network - Nova networking - Standalone network Documentation for these plugins is in review here: https://review.openstack.org/#/c/171166/ Change-Id: Ida57ae5551c962791eaddacb695996cf4e8dec23
15 lines
346 B
Ruby
15 lines
346 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::network::nova_network' do
|
|
let("title") {'novanet'}
|
|
|
|
context 'with provided parameters' do
|
|
it 'configures nova network plugin' do
|
|
|
|
is_expected.to contain_manila_config("novanet/network_api_class").with_value(
|
|
'manila.network.nova_network_plugin.NovaNetworkPlugin')
|
|
|
|
end
|
|
end
|
|
end
|