Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / uriescape_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index e123425..9553625
@@ -1,17 +1,15 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
 describe 'uriescape function' do
   describe 'success' do
-    it 'uriescape strings' do
-      pp = <<-EOS
+    pp = <<-DOC
       $a = ":/?#[]@!$&'()*+,;= \\\"{}"
       $o = uriescape($a)
       notice(inline_template('uriescape is <%= @o.inspect %>'))
-      EOS
-
+    DOC
+    it 'uriescape strings' do
       apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/uriescape is ":\/\?%23\[\]@!\$&'\(\)\*\+,;=%20%22%7B%7D"/)
+        expect(r.stdout).to match(%r{uriescape is ":\/\?%23\[\]@!\$&'\(\)\*\+,;=%20%22%7B%7D"})
       end
     end
     it 'does nothing if a string is already safe'