Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / hash_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index ed53834..82e9245
@@ -1,20 +1,18 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'hash function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+describe 'hash function' do
   describe 'success' do
-    it 'hashs arrays' do
-      pp = <<-EOS
+    pp = <<-DOC
       $a = ['aaa','bbb','bbb','ccc','ddd','eee']
       $b = { 'aaa' => 'bbb', 'bbb' => 'ccc', 'ddd' => 'eee' }
       $o = hash($a)
       if $o == $b {
         notify { 'output correct': }
       }
-      EOS
-
+    DOC
+    it 'hashs arrays' 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
     it 'handles odd-length arrays'