mirror of
https://github.com/redmine/redmine.git
synced 2026-03-24 05:10:44 +01:00
Merged r13556 (#13673).
git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@13628 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -97,6 +97,8 @@ module QueriesHelper
|
||||
link_to value, issue_path(issue)
|
||||
when :subject
|
||||
link_to value, issue_path(issue)
|
||||
when :parent
|
||||
value ? (value.visible? ? link_to_issue(value, :subject => false) : "##{value.id}") : ''
|
||||
when :description
|
||||
issue.description? ? content_tag('div', textilizable(issue, :description), :class => "wiki") : ''
|
||||
when :done_ratio
|
||||
|
||||
@@ -874,6 +874,17 @@ class IssuesControllerTest < ActionController::TestCase
|
||||
assert_equal 'application/pdf', response.content_type
|
||||
end
|
||||
|
||||
def test_index_with_parent_column
|
||||
Issue.delete_all
|
||||
parent = Issue.generate!
|
||||
child = Issue.generate!(:parent_issue_id => parent.id)
|
||||
|
||||
get :index, :c => %w(parent)
|
||||
|
||||
assert_select 'td.parent', :text => "#{parent.tracker} ##{parent.id}"
|
||||
assert_select 'td.parent a[title=?]', parent.subject
|
||||
end
|
||||
|
||||
def test_index_send_html_if_query_is_invalid
|
||||
get :index, :f => ['start_date'], :op => {:start_date => '='}
|
||||
assert_equal 'text/html', @response.content_type
|
||||
|
||||
Reference in New Issue
Block a user