puppet-midonet/spec/acceptance/midonet_mem_manager_spec.rb
sandip-calsoft 6f337db2d4 added changes for quickstart of analytics services
Change-Id: Iafe99e3baa5e0335e5464b607eba42c4e1e6c3b9
2016-08-11 05:16:36 +00:00

17 lines
433 B
Ruby

require 'spec_helper_acceptance'
describe 'midonet class' do
context 'with mem' do
# Using puppet_apply as a helper
it 'should work without any errors' do
pp = <<-EOS
notice('removing MEM manager from Beaker test execution')
EOS
# Run it twice and test for idempotency
expect(apply_manifest(pp).exit_code).to_not eq(1)
expect(apply_manifest(pp).exit_code).to eq(0)
end
end
end