]> source.dussan.org Git - redmine.git/commitdiff
shorten long line of test/unit/lib/redmine/views/builders/json_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 10 Nov 2020 11:09:38 +0000 (11:09 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Tue, 10 Nov 2020 11:09:38 +0000 (11:09 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20322 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/lib/redmine/views/builders/json_test.rb

index a20f92ab9c3999a67b498097a6860bffdd17999a..dc5790ac5eae3003dd864b482c3cc45ba23eb108 100644 (file)
@@ -76,7 +76,14 @@ class Redmine::Views::Builders::JsonTest < ActiveSupport::TestCase
   end
 
   def test_array_with_content_tags
-    assert_json_output({'books' => [{'value' => 'Book 1', 'author' => 'B. Smith'}, {'value' => 'Book 2', 'author' => 'G. Cooper'}]}) do |b|
+    assert_json_output(
+      {
+        'books' => [
+          {'value' => 'Book 1', 'author' => 'B. Smith'},
+          {'value' => 'Book 2', 'author' => 'G. Cooper'}
+        ]
+      }
+    ) do |b|
       b.array :books do |b|
         b.book 'Book 1', :author => 'B. Smith'
         b.book 'Book 2', :author => 'G. Cooper'
@@ -98,7 +105,16 @@ class Redmine::Views::Builders::JsonTest < ActiveSupport::TestCase
   end
 
   def test_request_response
-    assert_json_output({'request' => { 'get' => 'book' }, 'response' => { 'book' => { 'title' => 'Book 1' } }}) do |b|
+    assert_json_output(
+      {
+        'request' => {
+          'get' => 'book'
+        },
+        'response' => {
+          'book' => {'title' => 'Book 1'}
+        }
+      }
+    ) do |b|
       b.request do
         b.get 'book'
       end