Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / delete_values_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 04b6920..634d319
@@ -1,20 +1,18 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
 describe 'delete_values function' do
   describe 'success' do
-    it 'should delete elements of the hash' do
-      pp = <<-EOS
+    pp = <<-DOC
       $a = { 'a' => 'A', 'b' => 'B', 'B' => 'C', 'd' => 'B' }
       $b = { 'a' => 'A', 'B' => 'C' }
       $o = delete_values($a, 'B')
       if $o == $b {
         notify { 'output correct': }
       }
-      EOS
-
+    DOC
+    it 'deletes elements of the hash' do
       apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/Notice: output correct/)
+        expect(r.stdout).to match(%r{Notice: output correct})
       end
     end
   end