Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / getparam_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index b1a677e..6ed2257
@@ -1,19 +1,17 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'getparam function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+describe 'getparam function' do
   describe 'success' do
-    it 'getparam a notify' do
-      pp = <<-EOS
+    pp = <<-DOC
       notify { 'rspec':
         message => 'custom rspec message',
       }
       $o = getparam(Notify['rspec'], 'message')
       notice(inline_template('getparam is <%= @o.inspect %>'))
-      EOS
-
+    DOC
+    it 'getparam a notify' do
       apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/getparam is "custom rspec message"/)
+        expect(r.stdout).to match(%r{getparam is "custom rspec message"})
       end
     end
   end