]> source.dussan.org Git - redmine.git/commitdiff
shorten long line of test/integration/lib/redmine/menu_manager_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 22 Oct 2020 14:17:20 +0000 (14:17 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 22 Oct 2020 14:17:20 +0000 (14:17 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20156 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/integration/lib/redmine/menu_manager_test.rb

index 6fc49b64a599c8fba82ba9e8fdfaa4a031a93adb..07fbcc33289a68f1355877cb3f6ccb612c79165f 100644 (file)
@@ -44,9 +44,22 @@ class MenuManagerTest < Redmine::IntegrationTest
     Setting.default_language = 'en'
     assert_no_difference 'Redmine::MenuManager.items(:project_menu).size' do
       Redmine::MenuManager.map :project_menu do |menu|
-        menu.push :foo, { :controller => 'projects', :action => 'show' }, :caption => 'Foo'
-        menu.push :bar, { :controller => 'projects', :action => 'show' }, :before => :activity
-        menu.push :hello, { :controller => 'projects', :action => 'show' }, :caption => Proc.new {|p| p.name.upcase }, :after => :bar
+        menu.push(
+          :foo,
+          {:controller => 'projects', :action => 'show'},
+          :caption => 'Foo'
+        )
+        menu.push(
+          :bar,
+          {:controller => 'projects', :action => 'show'},
+          :before => :activity
+        )
+        menu.push(
+          :hello,
+          {:controller => 'projects', :action => 'show'},
+          :caption => Proc.new {|p| p.name.upcase},
+          :after => :bar
+        )
       end
 
       get '/projects/ecookbook'