Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / chomp_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 56e0876..7fe9b1b
@@ -1,10 +1,8 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'chomp function' do
+describe 'chomp function', :if => Puppet::Util::Package.versioncmp(return_puppet_version, '6.0.0') < 0 do
   describe 'success' do
-    it 'should eat the newline' do
-      pp = <<-EOS
+    pp = <<-DOC
       $input = "test\n"
       if size($input) != 5 {
         fail("Size of ${input} is not 5.")
@@ -13,8 +11,8 @@ describe 'chomp function' do
       if size($output) != 4 {
         fail("Size of ${input} is not 4.")
       }
-      EOS
-
+    DOC
+    it 'eats the newline' do
       apply_manifest(pp, :catch_failures => true)
     end
   end