Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / delete_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index a28604c..70877cb
@@ -1,18 +1,16 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'delete function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
-  describe 'success' do
-    it 'should delete elements of the array' do
-      pp = <<-EOS
+describe 'delete function' do
+  pp = <<-DOC
       $output = delete(['a','b','c','b'], 'b')
       if $output == ['a','c'] {
         notify { 'output correct': }
       }
-      EOS
-
+  DOC
+  describe 'success' do
+    it 'deletes elements of the array' do
       apply_manifest(pp, :catch_failures => true) do |r|
-        expect(r.stdout).to match(/Notice: output correct/)
+        expect(r.stdout).to match(%r{Notice: output correct})
       end
     end
   end