Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / pick_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index c70b2d9..14834b4
@@ -1,43 +1,41 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
 describe 'pick function' do
   describe 'success' do
-    it 'picks a default value' do
-      pp = <<-EOS
+    pp1 = <<-DOC
       $a = undef
       $o = pick($a, 'default')
       notice(inline_template('picked is <%= @o.inspect %>'))
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/picked is "default"/)
+    DOC
+    it 'picks a default value' do
+      apply_manifest(pp1, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{picked is "default"})
       end
     end
-    it 'picks the first set value' do
-      pp = <<-EOS
+
+    pp2 = <<-DOC
       $a = "something"
       $b = "long"
       $o = pick($a, $b, 'default')
       notice(inline_template('picked is <%= @o.inspect %>'))
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/picked is "something"/)
+    DOC
+    it 'picks the first set value' do
+      apply_manifest(pp2, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{picked is "something"})
       end
     end
   end
+
   describe 'failure' do
-    it 'raises error with all undef values' do
-      pp = <<-EOS
+    pp3 = <<-DOC
       $a = undef
       $b = undef
       $o = pick($a, $b)
       notice(inline_template('picked is <%= @o.inspect %>'))
-      EOS
-
-      apply_manifest(pp, :expect_failures => true) do |r|
-        expect(r.stderr).to match(/must receive at least one non empty value/)
+    DOC
+    it 'raises error with all undef values' do
+      apply_manifest(pp3, :expect_failures => true) do |r|
+        expect(r.stderr).to match(%r{must receive at least one non empty value})
       end
     end
   end