summaryrefslogtreecommitdiff
path: root/spec/system/ntp_config_spec.rb
diff options
context:
space:
mode:
authorAshley Penney <apenney@gmail.com>2013-07-09 14:10:19 -0700
committerAshley Penney <apenney@gmail.com>2013-07-09 14:10:19 -0700
commit75776217283ba2531d9025b34db567dc06f2ff65 (patch)
treed1e45b40789bb77cf88ca38c03ba1a3841d20229 /spec/system/ntp_config_spec.rb
parent451c93a46c42c9659cc0930a301746cf103dbeb2 (diff)
parentb9ab67401404d13e535d815c8a3eafb78cf143fd (diff)
Merge pull request #66 from apenney/refactor-round-1
WIP: Refactoring of NTP module
Diffstat (limited to 'spec/system/ntp_config_spec.rb')
-rw-r--r--spec/system/ntp_config_spec.rb35
1 files changed, 35 insertions, 0 deletions
diff --git a/spec/system/ntp_config_spec.rb b/spec/system/ntp_config_spec.rb
new file mode 100644
index 0000000..263bc9d
--- /dev/null
+++ b/spec/system/ntp_config_spec.rb
@@ -0,0 +1,35 @@
+require 'spec_helper_system'
+
+describe 'ntp::config class' do
+ let(:os) {
+ node.facts['osfamily']
+ }
+
+ puppet_apply(%{
+ class { 'ntp': }
+ })
+
+ case node.facts['osfamily']
+ when 'FreeBSD'
+ line = '0.freebsd.pool.ntp.org iburst maxpoll 9'
+ when 'Debian'
+ line = '0.debian.pool.ntp.org iburst'
+ when 'RedHat'
+ line = '0.centos.pool.ntp.org'
+ when 'SuSE'
+ line = '0.opensuse.pool.ntp.org'
+ when 'Linux'
+ case node.facts['operatingsystem']
+ when 'ArchLinux'
+ line = '0.pool.ntp.org'
+ when 'Gentoo'
+ line = '0.gentoo.pool.ntp.org'
+ end
+ end
+
+ describe file('/etc/ntp.conf') do
+ it { should be_file }
+ it { should contain line }
+ end
+
+end