]> 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:26 +0000 (04:15 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 17 Oct 2019 04:15:26 +0000 (04:15 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@18698 e93f8b46-1217-0410-a6f0-8f06a7374b81

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

index 671a5b384d038b1bb4e30c7d077063f3856cdbda..c7cea731e111738f60efe34881604567536b9f08 100644 (file)
@@ -384,35 +384,44 @@ EXPECTED
     assert_equal expected.gsub(%r{\s+}, ''), to_html(raw).gsub(%r{\s+}, '')
   end
 
-
   STR_WITHOUT_PRE = [
-  # 0
-"h1. Title
-
-Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sed libero.",
-  # 1
-"h2. Heading 2
-
-Maecenas sed elit sit amet mi accumsan vestibulum non nec velit. Proin porta tincidunt lorem, consequat rhoncus dolor fermentum in.
-
-Cras ipsum felis, ultrices at porttitor vel, faucibus eu nunc.",
-  # 2
-"h2. Heading 2
-
-Morbi facilisis accumsan orci non pharetra.
-
-h3. Heading 3
-
-Nulla nunc nisi, egestas in ornare vel, posuere ac libero.",
-  # 3
-"h3. Heading 3
-
-Praesent eget turpis nibh, a lacinia nulla.",
-  # 4
-"h2. Heading 2
-
-Ut rhoncus elementum adipiscing."]
-
+    # 0
+    <<~STR.chomp,
+      h1. Title
+
+      Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas sed libero.
+    STR
+    # 1
+    <<~STR.chomp,
+      h2. Heading 2
+
+      Maecenas sed elit sit amet mi accumsan vestibulum non nec velit. Proin porta tincidunt lorem, consequat rhoncus dolor fermentum in.
+
+      Cras ipsum felis, ultrices at porttitor vel, faucibus eu nunc.
+    STR
+    # 2
+    <<~STR.chomp,
+      h2. Heading 2
+
+      Morbi facilisis accumsan orci non pharetra.
+
+      h3. Heading 3
+
+      Nulla nunc nisi, egestas in ornare vel, posuere ac libero.
+    STR
+    # 3
+    <<~STR.chomp,
+      h3. Heading 3
+
+      Praesent eget turpis nibh, a lacinia nulla.
+    STR
+    # 4
+    <<~STR.chomp,
+      h2. Heading 2
+
+      Ut rhoncus elementum adipiscing.
+    STR
+  ]
   TEXT_WITHOUT_PRE = STR_WITHOUT_PRE.join("\n\n").freeze
 
   def test_get_section_should_return_the_requested_section_and_its_hash