Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / abs_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 6e41e2f..e3d904a
@@ -1,29 +1,26 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'abs function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+describe 'abs function', :if => Puppet::Util::Package.versioncmp(return_puppet_version, '6.0.0') < 0 do
   describe 'success' do
-    it 'should accept a string' do
-      pp = <<-EOS
+    pp1 = <<-DOC
       $input  = '-34.56'
       $output = abs($input)
       notify { "$output": }
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/Notice: 34.56/)
+    DOC
+    it 'accepts a string' do
+      apply_manifest(pp1, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{Notice: 34.56})
       end
     end
 
-    it 'should accept a float' do
-      pp = <<-EOS
-      $input  = -34.56
+    pp2 = <<-DOC
+      $input  = -35.46
       $output = abs($input)
       notify { "$output": }
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/Notice: 34.56/)
+    DOC
+    it 'accepts a float' do
+      apply_manifest(pp2, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{Notice: 35.46})
       end
     end
   end