Tab "New Issue" should not be displayed if a project has no trackers (#18571).

git-svn-id: http://svn.redmine.org/redmine/trunk@13713 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2014-12-05 12:17:20 +00:00
parent 934e3c7de1
commit 7c1445f19a
2 changed files with 16 additions and 1 deletions

View File

@@ -629,4 +629,18 @@ class ProjectsControllerTest < ActionController::TestCase
get :show, :id => 1
assert_select 'body.project-ecookbook'
end
def test_project_menu_should_include_new_issue_link
@request.session[:user_id] = 2
get :show, :id => 1
assert_select '#main-menu a.new-issue[href="/projects/ecookbook/issues/new"]', :text => 'New issue'
end
def test_project_menu_should_not_include_new_issue_link_for_project_without_trackers
Project.find(1).trackers.clear
@request.session[:user_id] = 2
get :show, :id => 1
assert_select '#main-menu a.new-issue', 0
end
end