Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / union_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 6db8d0c..e1b3d9a
@@ -1,19 +1,18 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'union function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+describe 'union function' do
   describe 'success' do
-    it 'unions arrays' do
-      pp = <<-EOS
+    pp = <<-DOC
       $a = ["the","public"]
-      $b = ["art","galleries"]
+      $b = ["art"]
+      $c = ["galleries"]
       # Anagram: Large picture halls, I bet
-      $o = union($a,$b)
+      $o = union($a,$b,$c)
       notice(inline_template('union is <%= @o.inspect %>'))
-      EOS
-
+    DOC
+    it 'unions arrays' do
       apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/union is \["the", "public", "art", "galleries"\]/)
+        expect(r.stdout).to match(%r{union is \["the", "public", "art", "galleries"\]})
       end
     end
   end