fuel-qa/fuelweb_test/puppet_tests/test_data/motd/spec/classes/motd_spec.rb

18 lines
294 B
Ruby

require 'spec_helper'
describe 'motd' do
it do
should contain_file('/etc/motd').with({
'ensure' => 'present',
'owner' => 'root',
'group' => 'root',
'mode' => '0644',
})
end
it do
should contain_file('/etc/motd').with_content('Hello!')
end
end