Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / suffix_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 630f866..6b04095
@@ -1,36 +1,34 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'suffix function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+describe 'suffix function' do
   describe 'success' do
-    it 'suffixes array of values' do
-      pp = <<-EOS
+    pp1 = <<-DOC
       $o = suffix(['a','b','c'],'p')
       notice(inline_template('suffix is <%= @o.inspect %>'))
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/suffix is \["ap", "bp", "cp"\]/)
+    DOC
+    it 'suffixes array of values' do
+      apply_manifest(pp1, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{suffix is \["ap", "bp", "cp"\]})
       end
     end
-    it 'suffixs with empty array' do
-      pp = <<-EOS
+
+    pp2 = <<-DOC
       $o = suffix([],'p')
       notice(inline_template('suffix is <%= @o.inspect %>'))
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/suffix is \[\]/)
+    DOC
+    it 'suffixs with empty array' do
+      apply_manifest(pp2, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{suffix is \[\]})
       end
     end
-    it 'suffixs array of values with undef' do
-      pp = <<-EOS
+
+    pp3 = <<-DOC
       $o = suffix(['a','b','c'], undef)
       notice(inline_template('suffix is <%= @o.inspect %>'))
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/suffix is \["a", "b", "c"\]/)
+    DOC
+    it 'suffixs array of values with undef' do
+      apply_manifest(pp3, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{suffix is \["a", "b", "c"\]})
       end
     end
   end