summaryrefslogtreecommitdiff
path: root/spec/acceptance/chomp_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/chomp_spec.rb
parentfcbc4b59a69c62239d15aa11ce7fccaeb93da9cf (diff)
Add success/fail groups
Diffstat (limited to 'spec/acceptance/chomp_spec.rb')
-rw-r--r--spec/acceptance/chomp_spec.rb26
1 files changed, 14 insertions, 12 deletions
diff --git a/spec/acceptance/chomp_spec.rb b/spec/acceptance/chomp_spec.rb
index 052226f..c4af9d9 100644
--- a/spec/acceptance/chomp_spec.rb
+++ b/spec/acceptance/chomp_spec.rb
@@ -1,18 +1,20 @@
require 'spec_helper_acceptance'
describe 'chomp function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
- it 'should eat the newline' do
- pp = <<-EOS
- $input = "test\n"
- if size($input) != 5 {
- fail("Size of ${input} is not 5.")
- }
- $output = chomp($input)
- if size($output) != 4 {
- fail("Size of ${input} is not 4.")
- }
- EOS
+ describe 'success' do
+ it 'should eat the newline' do
+ pp = <<-EOS
+ $input = "test\n"
+ if size($input) != 5 {
+ fail("Size of ${input} is not 5.")
+ }
+ $output = chomp($input)
+ if size($output) != 4 {
+ fail("Size of ${input} is not 4.")
+ }
+ EOS
- apply_manifest(pp, :catch_failures => true)
+ apply_manifest(pp, :catch_failures => true)
+ end
end
end