
This change updates additional parser functions we have to use teh puppet 4.x function api. This includes some basic unit tests to ensure they continue to function as expected. Change-Id: Iebeb82b2890216bed139219441718fffc4004391 Related-Bug: #1799786
17 lines
336 B
Ruby
17 lines
336 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'noop_resource' do
|
|
it {
|
|
should run.with_params('nova_config').and_return(true)
|
|
}
|
|
context 'noop a puppet resource' do
|
|
let (:pre_condition) {
|
|
'noop_resource("file")
|
|
file { "bar": path => "/baz" }'
|
|
}
|
|
it {
|
|
expect(-> {catalogue}).to contain_file('bar')
|
|
}
|
|
end
|
|
end
|