Update concat
[mirror/dsa-puppet.git] / 3rdparty / modules / concat / spec / acceptance / quoted_paths_spec.rb
index 042425f..6f9f9fd 100644 (file)
@@ -1,42 +1,42 @@
-require 'spec_helper_acceptance'\r
-\r
-describe 'quoted paths' do\r
-  basedir = default.tmpdir('concat')\r
-\r
-  before(:all) do\r
-    pp = <<-EOS\r
-      file { '#{basedir}':\r
-        ensure => directory,\r
-      }\r
-      file { '#{basedir}/concat test':\r
-        ensure => directory,\r
-      }\r
-    EOS\r
-    apply_manifest(pp)\r
-  end\r
-\r
-  context 'path with blanks' do\r
-    pp = <<-EOS\r
-      concat { '#{basedir}/concat test/foo':\r
-      }\r
-      concat::fragment { '1':\r
-        target  => '#{basedir}/concat test/foo',\r
-        content => 'string1',\r
-      }\r
-      concat::fragment { '2':\r
-        target  => '#{basedir}/concat test/foo',\r
-        content => 'string2',\r
-      }\r
-    EOS\r
-\r
-    it 'applies the manifest twice with no stderr' do\r
-      apply_manifest(pp, :catch_failures => true)\r
-      apply_manifest(pp, :catch_changes => true)\r
-    end\r
-\r
-    describe file("#{basedir}/concat test/foo") do\r
-      it { should be_file }\r
-      its(:content) { should match /string1string2/ }\r
-    end\r
-  end\r
-end\r
+require 'spec_helper_acceptance'
+
+describe 'quoted paths' do
+  basedir = default.tmpdir('concat')
+
+  before(:all) do
+    pp = <<-EOS
+      file { '#{basedir}':
+        ensure => directory,
+      }
+      file { '#{basedir}/concat test':
+        ensure => directory,
+      }
+    EOS
+    apply_manifest(pp)
+  end
+
+  context 'path with blanks' do
+    pp = <<-EOS
+      concat { '#{basedir}/concat test/foo':
+      }
+      concat::fragment { '1':
+        target  => '#{basedir}/concat test/foo',
+        content => 'string1',
+      }
+      concat::fragment { '2':
+        target  => '#{basedir}/concat test/foo',
+        content => 'string2',
+      }
+    EOS
+
+    it 'applies the manifest twice with no stderr' do
+      apply_manifest(pp, :catch_failures => true)
+      apply_manifest(pp, :catch_changes => true)
+    end
+
+    describe file("#{basedir}/concat test/foo") do
+      it { should be_file }
+      its(:content) { should match /string1string2/ }
+    end
+  end
+end