Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / bool2num_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index c69acc6..bf6611e
@@ -1,32 +1,29 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
 describe 'bool2num function' do
   describe 'success' do
     ['false', 'f', '0', 'n', 'no'].each do |bool|
-      it "should convert a given boolean, #{bool}, to 0" do
-        pp = <<-EOS
+      pp1 = <<-DOC
         $input = "#{bool}"
         $output = bool2num($input)
         notify { "$output": }
-        EOS
-
-        apply_manifest(pp, :catch_failures => true) do |r|
-          expect(r.stdout).to match(/Notice: 0/)
+      DOC
+      it "should convert a given boolean, #{bool}, to 0" do
+        apply_manifest(pp1, :catch_failures => true) do |r|
+          expect(r.stdout).to match(%r{Notice: 0})
         end
       end
     end
 
     ['true', 't', '1', 'y', 'yes'].each do |bool|
-      it "should convert a given boolean, #{bool}, to 1" do
-        pp = <<-EOS
+      pp2 = <<-DOC
         $input = "#{bool}"
         $output = bool2num($input)
         notify { "$output": }
-        EOS
-
-        apply_manifest(pp, :catch_failures => true) do |r|
-          expect(r.stdout).to match(/Notice: 1/)
+      DOC
+      it "should convert a given boolean, #{bool}, to 1" do
+        apply_manifest(pp2, :catch_failures => true) do |r|
+          expect(r.stdout).to match(%r{Notice: 1})
         end
       end
     end