c5005c221f
Global replacement of all Quantum references with Neutron. Change-Id: I74ad15e382589ced6f47d0783e3e952627fcd0f7
21 lines
361 B
Ruby
21 lines
361 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'neutron::client' do
|
|
|
|
context 'on Debian platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian' }
|
|
end
|
|
|
|
it { should contain_class('neutron::client') }
|
|
end
|
|
|
|
context 'on RedHat platforms' do
|
|
let :facts do
|
|
{ :osfamily => 'RedHat' }
|
|
end
|
|
|
|
it { should contain_class('neutron::client') }
|
|
end
|
|
end
|