Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / squeeze_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 3324691..c3be9db
@@ -1,42 +1,39 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
 describe 'squeeze function' do
   describe 'success' do
-    it 'squeezes arrays' do
-      pp = <<-EOS
+    pp1 = <<-DOC
       # Real words!
       $a = ["wallless", "laparohysterosalpingooophorectomy", "brrr", "goddessship"]
       $o = squeeze($a)
       notice(inline_template('squeeze is <%= @o.inspect %>'))
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/squeeze is \["wales", "laparohysterosalpingophorectomy", "br", "godeship"\]/)
+    DOC
+    it 'squeezes arrays' do
+      apply_manifest(pp1, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{squeeze is \["wales", "laparohysterosalpingophorectomy", "br", "godeship"\]})
       end
     end
+
     it 'squeezez arrays with an argument'
-    it 'squeezes strings' do
-      pp = <<-EOS
+    pp2 = <<-DOC
       $a = "wallless laparohysterosalpingooophorectomy brrr goddessship"
       $o = squeeze($a)
       notice(inline_template('squeeze is <%= @o.inspect %>'))
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/squeeze is "wales laparohysterosalpingophorectomy br godeship"/)
+    DOC
+    it 'squeezes strings' do
+      apply_manifest(pp2, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{squeeze is "wales laparohysterosalpingophorectomy br godeship"})
       end
     end
 
-    it 'squeezes strings with an argument' do
-      pp = <<-EOS
+    pp3 = <<-DOC
       $a = "countessship duchessship governessship hostessship"
       $o = squeeze($a, 's')
       notice(inline_template('squeeze is <%= @o.inspect %>'))
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/squeeze is "counteship ducheship governeship hosteship"/)
+    DOC
+    it 'squeezes strings with an argument' do
+      apply_manifest(pp3, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{squeeze is "counteship ducheship governeship hosteship"})
       end
     end
   end