mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
16 lines
424 B
Ruby
16 lines
424 B
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
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
|