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