Code cleanup: implement Plugin#to_param for generating routes.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10995 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2012-12-13 13:52:56 +00:00
parent c93fccc84a
commit c31f498ba6
4 changed files with 18 additions and 11 deletions

View File

@@ -27,15 +27,13 @@ class AdminControllerTest < ActionController::TestCase
def test_index
get :index
assert_no_tag :tag => 'div',
:attributes => { :class => /nodata/ }
assert_select 'div.nodata', 0
end
def test_index_with_no_configuration_data
delete_configuration_data
get :index
assert_tag :tag => 'div',
:attributes => { :class => /nodata/ }
assert_select 'div.nodata'
end
def test_projects
@@ -128,8 +126,14 @@ class AdminControllerTest < ActionController::TestCase
assert_response :success
assert_template 'plugins'
assert_tag :td, :child => { :tag => 'span', :content => 'Foo plugin' }
assert_tag :td, :child => { :tag => 'span', :content => 'Bar' }
assert_select 'tr#plugin-foo' do
assert_select 'td span.name', :text => 'Foo plugin'
assert_select 'td.configure a[href=/settings/plugin/foo]'
end
assert_select 'tr#plugin-bar' do
assert_select 'td span.name', :text => 'Bar'
assert_select 'td.configure a', 0
end
end
def test_info
@@ -145,8 +149,7 @@ class AdminControllerTest < ActionController::TestCase
get :index
assert_response :success
assert_tag :a, :attributes => { :href => '/foo/bar' },
:content => 'Test'
assert_select 'div#admin-menu a[href=/foo/bar]', :text => 'Test'
Redmine::MenuManager.map :admin_menu do |menu|
menu.delete :test_admin_menu_plugin_extension