puppet-manila/spec/defines/manila_network_nova_network_spec.rb
Ryan Hefner 728a0e586d Support network plugin model
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
2015-04-14 01:18:40 +00:00

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