puppet-tripleo/spec/functions/netmask_to_cidr_spec.rb
Michael Henkel 8b9e2b3c6c Contrail: Fix controlplane/dataplane network asignments & enable optional dpdk
This patch will move the Contrail roles communication towards
OpenStack APIs from the public/external network to the
internal_api network. I will also add the option to enable
dpdk for Contrail.

Change-Id: Ia835df656031cdf28de20f41ec6ab1c028dced23
Closes-Bug: 1698422
2017-07-05 22:52:58 +02:00

7 lines
138 B
Ruby

require 'spec_helper'
require 'puppet'
describe 'netmask_to_cidr' do
it { should run.with_params('255.255.255.0').and_return(24) }
end