summaryrefslogtreecommitdiff
path: root/spec/system/ntp_install_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/system/ntp_install_spec.rb')
-rw-r--r--spec/system/ntp_install_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/system/ntp_install_spec.rb b/spec/system/ntp_install_spec.rb
new file mode 100644
index 0000000..434cf58
--- /dev/null
+++ b/spec/system/ntp_install_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper_system'
+
+describe 'ntp::install class' do
+ let(:os) {
+ node.facts['osfamily']
+ }
+
+ describe package('ntp') do
+ it { should be_installed }
+ end
+end