Fixed: associated changesets from other projects are not visible if the current project doesn't have the repository module enabled (#3087).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8749 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -41,7 +41,9 @@ class IssuesControllerTest < ActionController::TestCase
|
||||
:time_entries,
|
||||
:journals,
|
||||
:journal_details,
|
||||
:queries
|
||||
:queries,
|
||||
:repositories,
|
||||
:changesets
|
||||
|
||||
include Redmine::I18n
|
||||
|
||||
@@ -1074,6 +1076,18 @@ class IssuesControllerTest < ActionController::TestCase
|
||||
assert_no_tag 'a', :content => /Next/
|
||||
end
|
||||
|
||||
def test_show_should_display_visible_changesets_from_other_projects
|
||||
project = Project.find(2)
|
||||
issue = project.issues.first
|
||||
issue.changeset_ids = [102]
|
||||
issue.save!
|
||||
project.disable_module! :repository
|
||||
|
||||
@request.session[:user_id] = 2
|
||||
get :show, :id => issue.id
|
||||
assert_tag 'a', :attributes => {:href => "/projects/ecookbook/repository/revisions/3"}
|
||||
end
|
||||
|
||||
def test_show_with_multi_custom_field
|
||||
field = CustomField.find(1)
|
||||
field.update_attribute :multiple, true
|
||||
|
||||
Reference in New Issue
Block a user