1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

shorten long line of test/unit/lib/redmine/menu_manager/mapper_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20621 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-12-11 14:17:27 +00:00
parent 7babec4e04
commit a8a333e58d

View File

@ -67,15 +67,16 @@ class Redmine::MenuManager::MapperTest < ActiveSupport::TestCase
menu_mapper.push :test_third, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_third, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_fourth, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_fourth, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_fifth, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_fifth, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_first, {:controller => 'projects', :action => 'show'}, {:first => true} menu_mapper.push :test_first,
{:controller => 'projects', :action => 'show'},
{:first => true}
root = menu_mapper.find(:root) root = menu_mapper.find(:root)
assert_equal 5, root.children.size assert_equal 5, root.children.size
{0 => :test_first, 1 => :test_second, 2 => :test_third, 3 => :test_fourth, 4 => :test_fifth}.each do |position, name| {0 => :test_first, 1 => :test_second, 2 => :test_third,
3 => :test_fourth, 4 => :test_fifth}.each do |position, name|
assert_not_nil root.children[position] assert_not_nil root.children[position]
assert_equal name, root.children[position].name assert_equal name, root.children[position].name
end end
end end
def test_push_before def test_push_before
@ -84,15 +85,16 @@ class Redmine::MenuManager::MapperTest < ActiveSupport::TestCase
menu_mapper.push :test_second, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_second, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_fourth, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_fourth, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_fifth, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_fifth, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_third, {:controller => 'projects', :action => 'show'}, {:before => :test_fourth} menu_mapper.push :test_third,
{:controller => 'projects', :action => 'show'},
{:before => :test_fourth}
root = menu_mapper.find(:root) root = menu_mapper.find(:root)
assert_equal 5, root.children.size assert_equal 5, root.children.size
{0 => :test_first, 1 => :test_second, 2 => :test_third, 3 => :test_fourth, 4 => :test_fifth}.each do |position, name| {0 => :test_first, 1 => :test_second, 2 => :test_third, 3 => :test_fourth,
4 => :test_fifth}.each do |position, name|
assert_not_nil root.children[position] assert_not_nil root.children[position]
assert_equal name, root.children[position].name assert_equal name, root.children[position].name
end end
end end
def test_push_after def test_push_after
@ -101,15 +103,16 @@ class Redmine::MenuManager::MapperTest < ActiveSupport::TestCase
menu_mapper.push :test_second, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_second, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_third, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_third, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_fifth, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_fifth, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_fourth, {:controller => 'projects', :action => 'show'}, {:after => :test_third} menu_mapper.push :test_fourth,
{:controller => 'projects', :action => 'show'},
{:after => :test_third}
root = menu_mapper.find(:root) root = menu_mapper.find(:root)
assert_equal 5, root.children.size assert_equal 5, root.children.size
{0 => :test_first, 1 => :test_second, 2 => :test_third, 3 => :test_fourth, 4 => :test_fifth}.each do |position, name| {0 => :test_first, 1 => :test_second, 2 => :test_third,
3 => :test_fourth, 4 => :test_fifth}.each do |position, name|
assert_not_nil root.children[position] assert_not_nil root.children[position]
assert_equal name, root.children[position].name assert_equal name, root.children[position].name
end end
end end
def test_push_last def test_push_last
@ -119,21 +122,21 @@ class Redmine::MenuManager::MapperTest < ActiveSupport::TestCase
menu_mapper.push :test_third, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_third, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_fifth, {:controller => 'projects', :action => 'show'}, {:last => true} menu_mapper.push :test_fifth, {:controller => 'projects', :action => 'show'}, {:last => true}
menu_mapper.push :test_fourth, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_fourth, {:controller => 'projects', :action => 'show'}, {}
root = menu_mapper.find(:root) root = menu_mapper.find(:root)
assert_equal 5, root.children.size assert_equal 5, root.children.size
{0 => :test_first, 1 => :test_second, 2 => :test_third, 3 => :test_fourth, 4 => :test_fifth}.each do |position, name| {0 => :test_first, 1 => :test_second, 2 => :test_third,
3 => :test_fourth, 4 => :test_fifth}.each do |position, name|
assert_not_nil root.children[position] assert_not_nil root.children[position]
assert_equal name, root.children[position].name assert_equal name, root.children[position].name
end end
end end
def test_exists_for_child_node def test_exists_for_child_node
menu_mapper = Redmine::MenuManager::Mapper.new(:test_menu, {}) menu_mapper = Redmine::MenuManager::Mapper.new(:test_menu, {})
menu_mapper.push :test_overview, {:controller => 'projects', :action => 'show'}, {} menu_mapper.push :test_overview, {:controller => 'projects', :action => 'show'}, {}
menu_mapper.push :test_child, {:controller => 'projects', :action => 'show'}, {:parent => :test_overview} menu_mapper.push :test_child,
{:controller => 'projects', :action => 'show'},
{:parent => :test_overview}
assert menu_mapper.exists?(:test_child) assert menu_mapper.exists?(:test_child)
end end