inspec/test/unit/resources/ntp_conf_test.rb
Ryan Davis a5309ea392 blindly applied chefstyle -a
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-06-11 18:52:03 -07:00

13 lines
386 B
Ruby

require "helper"
require "inspec/resource"
require "inspec/resources/ntp_conf"
describe "Inspec::Resources::NtpConf" do
it "verify ntp config parsing" do
resource = load_resource("ntp_conf")
_(resource.driftfile).must_equal "/var/lib/ntp/ntp.drift"
_(resource.server).must_equal %w{
0.ubuntu.pool.ntp.org 1.ubuntu.pool.ntp.org 2.ubuntu.pool.ntp.org
}
end
end