
With the release of `puppet-cassandra`, we can create a manifest that maintains old `::midonet::cassandra` and passes parameters to the new module to keep backwards compatibility. Change-Id: I37cf934f97a9ab341739137018ceeb1854aed45a
17 lines
311 B
Ruby
17 lines
311 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)
|
|
apply_manifest(pp)
|
|
end
|
|
end
|
|
end
|