mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
a5309ea392
Signed-off-by: Ryan Davis <zenspider@chef.io>
13 lines
386 B
Ruby
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
|