summaryrefslogtreecommitdiff
path: root/spec/acceptance/count_spec.rb
diff options
context:
space:
mode:
authorHunter Haugen <hunter@puppetlabs.com>2014-04-08 15:04:55 -0700
committerHunter Haugen <hunter@puppetlabs.com>2014-04-08 15:04:55 -0700
commitf8f147e794ad305bb8f2dbf5e3a612f0659834ba (patch)
tree9b8b2093204c8ce56d7befdef4cef673fbc479b7 /spec/acceptance/count_spec.rb
parentfcbc4b59a69c62239d15aa11ce7fccaeb93da9cf (diff)
Add success/fail groups
Diffstat (limited to 'spec/acceptance/count_spec.rb')
-rw-r--r--spec/acceptance/count_spec.rb36
1 files changed, 19 insertions, 17 deletions
diff --git a/spec/acceptance/count_spec.rb b/spec/acceptance/count_spec.rb
index cc46be0..0a0f5d7 100644
--- a/spec/acceptance/count_spec.rb
+++ b/spec/acceptance/count_spec.rb
@@ -1,27 +1,29 @@
require 'spec_helper_acceptance'
describe 'count function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
- it 'should count elements in an array' do
- pp = <<-EOS
- $input = [1,2,3,4]
- $output = count($input)
- notify { $output: }
- EOS
+ describe 'success' do
+ it 'should count elements in an array' do
+ pp = <<-EOS
+ $input = [1,2,3,4]
+ $output = count($input)
+ notify { $output: }
+ EOS
- apply_manifest(pp, :catch_failures => true) do |r|
- expect(r.stdout).to match(/Notice: 4/)
+ apply_manifest(pp, :catch_failures => true) do |r|
+ expect(r.stdout).to match(/Notice: 4/)
+ end
end
- end
- it 'should count elements in an array that match a second argument' do
- pp = <<-EOS
- $input = [1,1,1,2]
- $output = count($input, 1)
- notify { $output: }
- EOS
+ it 'should count elements in an array that match a second argument' do
+ pp = <<-EOS
+ $input = [1,1,1,2]
+ $output = count($input, 1)
+ notify { $output: }
+ EOS
- apply_manifest(pp, :catch_failures => true) do |r|
- expect(r.stdout).to match(/Notice: 3/)
+ apply_manifest(pp, :catch_failures => true) do |r|
+ expect(r.stdout).to match(/Notice: 3/)
+ end
end
end
end