inspec/test/unit/resources/ntp_conf_test.rb
2015-10-26 12:34:15 +01:00

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