chef-lctp/site-cookbooks/ntp/files/default/test/default_test.rb

12 lines
272 B
Ruby

require 'minitest/spec'
describe_recipe 'ntp::default' do
it "starts the ntp daemon" do
# ugly workaround because of race condition
assert_sh("sleep 3 && kill -0 $(cat /var/run/ntpd.pid)")
end
it "should sync the time" do
assert_sh("ntpq -p")
end
end