]> source.dussan.org Git - redmine.git/commitdiff
code cleanup: rubocop: fix Layout/CommentIndentation and Layout/MultilineArrayBraceLa...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 17 Oct 2019 04:15:37 +0000 (04:15 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 17 Oct 2019 04:15:37 +0000 (04:15 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@18699 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/lib/redmine/wiki_formatting/textile_formatter_test.rb

index c7cea731e111738f60efe34881604567536b9f08..65d12ad98003cd4114534a78ec9e3bbe755381fc 100644 (file)
@@ -460,38 +460,45 @@ EXPECTED
   end
 
   STR_WITH_PRE = [
-  # 0
-"h1. Title
+    # 0
+    <<~STR.chomp,
+      h1. Title
 
-Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sed libero.",
-  # 1
-"h2. Heading 2
+      Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sed libero.
+    STR
+    # 1
+    <<~STR.chomp,
+      h2. Heading 2
 
-<pre><code class=\"ruby\">
-  def foo
-  end
-</code></pre>
+      <pre><code class=\"ruby\">
+        def foo
+        end
+      </code></pre>
 
-<pre><code><pre><code class=\"ruby\">
-  Place your code here.
-</code></pre>
-</code></pre>
+      <pre><code><pre><code class=\"ruby\">
+        Place your code here.
+      </code></pre>
+      </code></pre>
 
-Morbi facilisis accumsan orci non pharetra.
+      Morbi facilisis accumsan orci non pharetra.
 
-<pre>
-Pre Content:
+      <pre>
+      Pre Content:
 
-h2. Inside pre
+      h2. Inside pre
 
-<tag> inside pre block
+      <tag> inside pre block
 
-Morbi facilisis accumsan orci non pharetra.
-</pre>",
-  # 2
-"h3. Heading 3
+      Morbi facilisis accumsan orci non pharetra.
+      </pre>
+    STR
+    # 2
+    <<~STR.chomp,
+      h3. Heading 3
 
-Nulla nunc nisi, egestas in ornare vel, posuere ac libero."]
+      Nulla nunc nisi, egestas in ornare vel, posuere ac libero.
+    STR
+  ]
 
   def test_get_section_should_ignore_pre_content
     text = STR_WITH_PRE.join("\n\n")