mirror of
https://github.com/inspec/inspec
synced 2024-11-24 05:33:17 +00:00
19 lines
423 B
Ruby
19 lines
423 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
require 'helper'
|
||
|
require 'vulcano/resource'
|
||
|
|
||
|
describe 'Vulcano::Resources::NtpConf' do
|
||
|
describe 'ntp_conf' do
|
||
|
let(:resource) { loadResource('ntp_conf') }
|
||
|
|
||
|
it 'verify ntp config parsing' do
|
||
|
_(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
|
||
|
end
|