
Beaker [https://github.com/puppetlabs/beaker] is the tool used by Puppetlabs for its acceptance tests. Replace the test-kitchen scripts, configuration, and dependencies by Beaker ones. Change-Id: I075265871f32f447021f7e1d6e2e2fe9e5c6049d Fixes-bug: https://midonet.atlassian.net/browse/MDT-27
17 lines
361 B
Ruby
17 lines
361 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'midonet all-in-one' do
|
|
|
|
context 'default parameters' do
|
|
it 'should work with no errors' do
|
|
pp = <<-EOS
|
|
class { 'midonet': }
|
|
EOS
|
|
|
|
# Run it twice for test the idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_failures => true)
|
|
end
|
|
end
|
|
end
|