Project

General

Profile

Download (1.23 KB) Statistics
| Branch: | Tag: | Revision:
# Redmine - project management software
# Copyright (C) 2006-2013 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

require 'test_helper'

class MenuManagerTest < ActiveSupport::TestCase
def test_map_should_yield_a_mapper
assert_difference 'Menu::Manager.items(:test_menu).size' do
Menu::Manager.map :test_menu do |mapper|
assert_kind_of Menu::Manager::Mapper, mapper
mapper.item :new_item
end
end
end

def test_items_should_return_menu_items
items = Menu::Manager.items(:test_menu)
assert_kind_of Menu::Node, items.first
end
end
(59-59/107)