Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / has_key_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index c8557cb..9da69c2
@@ -1,10 +1,8 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'has_key function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+describe 'has_key function' do
   describe 'success' do
-    it 'has_keys in hashes' do
-      pp = <<-EOS
+    pp1 = <<-DOC
       $a = { 'aaa' => 'bbb','bbb' => 'ccc','ddd' => 'eee' }
       $b = 'bbb'
       $c = true
@@ -12,14 +10,14 @@ describe 'has_key function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('ope
       if $o == $c {
         notify { 'output correct': }
       }
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/Notice: output correct/)
+    DOC
+    it 'has_keys in hashes' do
+      apply_manifest(pp1, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{Notice: output correct})
       end
     end
-    it 'has_keys not in hashes' do
-      pp = <<-EOS
+
+    pp2 = <<-DOC
       $a = { 'aaa' => 'bbb','bbb' => 'ccc','ddd' => 'eee' }
       $b = 'ccc'
       $c = false
@@ -27,10 +25,10 @@ describe 'has_key function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('ope
       if $o == $c {
         notify { 'output correct': }
       }
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/Notice: output correct/)
+    DOC
+    it 'has_keys not in hashes' do
+      apply_manifest(pp2, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{Notice: output correct})
       end
     end
   end