Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / count_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index fe7ca9d..c134836
@@ -1,29 +1,26 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'count function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+describe 'count function' do
   describe 'success' do
-    it 'should count elements in an array' do
-      pp = <<-EOS
+    pp1 = <<-DOC
       $input = [1,2,3,4]
       $output = count($input)
       notify { "$output": }
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/Notice: 4/)
+    DOC
+    it 'counts elements in an array' do
+      apply_manifest(pp1, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{Notice: 4})
       end
     end
 
-    it 'should count elements in an array that match a second argument' do
-      pp = <<-EOS
+    pp2 = <<-DOC
       $input = [1,1,1,2]
       $output = count($input, 1)
       notify { "$output": }
-      EOS
-
-      apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/Notice: 3/)
+    DOC
+    it 'counts elements in an array that match a second argument' do
+      apply_manifest(pp2, :catch_failures => true) do |r|
+        expect(r.stdout).to match(%r{Notice: 3})
       end
     end
   end