inspec/test/unit/resources/ntp_conf_test.rb

17 lines
424 B
Ruby
Raw Normal View History

2015-09-05 17:19:40 +00:00
# encoding: utf-8
2015-10-06 16:55:44 +00:00
# author: Christoph Hartmann
# author: Dominik Richter
2015-09-05 17:19:40 +00:00
require 'helper'
2015-10-26 03:04:18 +00:00
require 'inspec/resource'
2015-09-05 17:19:40 +00:00
2015-10-26 03:04:18 +00:00
describe 'Inspec::Resources::NtpConf' do
2015-09-22 16:33:05 +00:00
it 'verify ntp config parsing' do
2015-10-12 11:21:50 +00:00
resource = load_resource('ntp_conf')
2015-09-22 16:33:05 +00:00
_(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
}
2015-09-05 17:19:40 +00:00
end
end