def total_tag(column, value)
label = content_tag('span', "#{column.caption}:")
value =
- if [:hours, :spent_hours, :total_spent_hours, :estimated_hours].include? column.name
+ if [:hours, :spent_hours, :total_spent_hours, :estimated_hours, :total_estimated_hours].include? column.name
format_hours(value)
else
format_object(value)
'span',
value.to_s(item) {|other| link_to_issue(other, :subject => false, :tracker => false)}.html_safe,
:class => value.css_classes_for(item))
- when :hours, :estimated_hours
+ when :hours, :estimated_hours, :total_estimated_hours
format_hours(value)
when :spent_hours
link_to_if(value > 0, format_hours(value), project_time_entries_path(item.project, :issue_id => "#{item.id}"))
end
end
+ def test_index_should_respect_timespan_format
+ with_settings :timespan_format => 'minutes' do
+ get(
+ :index,
+ :params => {
+ :set_filter => 1,
+ :c => %w(estimated_hours total_estimated_hours spent_hours total_spent_hours)
+ }
+ )
+ assert_select 'table.issues tr#issue-1 td.estimated_hours', :text => '200:00'
+ assert_select 'table.issues tr#issue-1 td.total_estimated_hours', :text => '200:00'
+ assert_select 'table.issues tr#issue-1 td.spent_hours', :text => '154:15'
+ assert_select 'table.issues tr#issue-1 td.total_spent_hours', :text => '154:15'
+ end
+ end
+
def test_show_by_anonymous
get :show, :params => {
:id => 1