Suggest different variables to use if we want to tunnel both v4 and v6
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / acceptance / dirname_spec.rb
old mode 100755 (executable)
new mode 100644 (file)
index 97913dd..a532e11
@@ -1,37 +1,34 @@
-#! /usr/bin/env ruby -S rspec
 require 'spec_helper_acceptance'
 
-describe 'dirname function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+describe 'dirname function' do
   describe 'success' do
-    context 'absolute path' do
-      it 'returns the dirname' do
-        pp = <<-EOS
+    context 'with absolute path' do
+      pp1 = <<-DOC
         $a = '/path/to/a/file.txt'
         $b = '/path/to/a'
         $o = dirname($a)
         if $o == $b {
           notify { 'output correct': }
         }
-        EOS
-
-        apply_manifest(pp, :catch_failures => true) do |r|
-          expect(r.stdout).to match(/Notice: output correct/)
+      DOC
+      it 'returns the dirname' do
+        apply_manifest(pp1, :catch_failures => true) do |r|
+          expect(r.stdout).to match(%r{Notice: output correct})
         end
       end
     end
-    context 'relative path' do
-      it 'returns the dirname' do
-        pp = <<-EOS
+    context 'with relative path' do
+      pp2 = <<-DOC
         $a = 'path/to/a/file.txt'
         $b = 'path/to/a'
         $o = dirname($a)
         if $o == $b {
           notify { 'output correct': }
         }
-        EOS
-
-        apply_manifest(pp, :catch_failures => true) do |r|
-          expect(r.stdout).to match(/Notice: output correct/)
+      DOC
+      it 'returns the dirname' do
+        apply_manifest(pp2, :catch_failures => true) do |r|
+          expect(r.stdout).to match(%r{Notice: output correct})
         end
       end
     end