mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
adaf2bc364
This speeds up parallel unit test runs from a very consistent 2:49 to a very consistent 1:53, or a 33% reduction. Signed-off-by: Ryan Davis <zenspider@chef.io>
12 lines
325 B
Ruby
12 lines
325 B
Ruby
|
|
require 'helper'
|
|
|
|
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
|