module-inifile/spec/classes/inherit_test1_spec.rb
Richard Clamp bd6d244610 add a type to test inheriting from ini_setting
In order to test with rspec-puppet we need to set up the fixtures, and test via
rake spec, so we change that too
2013-07-16 10:17:27 +01:00

10 lines
248 B
Ruby

require 'spec_helper'
# We can't really test much here, apart from the type roundtrips though the
# parser OK.
describe 'inherit_test1' do
it do
should contain_inherit_ini_setting('valid_type').with({
'value' => 'true'
})
end
end