From 19b140786a6483a02b96d60605dc257d3625d3b7 Mon Sep 17 00:00:00 2001 From: Ashley Penney Date: Tue, 9 Jul 2013 12:22:18 -0400 Subject: Add some basic tests. --- spec/system/basic_spec.rb | 25 +++++++++++++++++++++++++ spec/system/ntp_install_spec.rb | 11 +++++++++++ 2 files changed, 36 insertions(+) create mode 100644 spec/system/basic_spec.rb create mode 100644 spec/system/ntp_install_spec.rb (limited to 'spec') diff --git a/spec/system/basic_spec.rb b/spec/system/basic_spec.rb new file mode 100644 index 0000000..87fedd2 --- /dev/null +++ b/spec/system/basic_spec.rb @@ -0,0 +1,25 @@ +require 'spec_helper_system' + +describe 'basic tests:' do + # Using puppet_apply as a subject + context puppet_apply 'notice("foo")' do + its(:stdout) { should =~ /foo/ } + its(:stderr) { should be_empty } + its(:exit_code) { should be_zero } + end + + # Using puppet_apply as a helper + it 'my class should work with no errors' do + pp = <<-EOS + class { 'ntp': } + EOS + + # Run it twice and test for idempotency + puppet_apply(pp) do |r| + r.exit_code.should_not == 1 + r.refresh + r.exit_code.should be_zero + end + end +end + 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 -- cgit v1.2.3