mirror of
https://github.com/redmine/redmine.git
synced 2026-05-07 04:57:26 +02:00
Merged r21371 from trunk to 4.2-stable (#20018).
git-svn-id: http://svn.redmine.org/redmine/branches/4.2-stable@21388 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -224,6 +224,19 @@ class TimelogReportTest < Redmine::ControllerTest
|
||||
assert_select 'td', :text => 'New'
|
||||
end
|
||||
|
||||
def test_report_activity_criterion_should_aggregate_system_activity_and_project_activity
|
||||
activity = TimeEntryActivity.create!(:name => 'Design', :parent_id => 9, :project_id => 3)
|
||||
TimeEntry.generate!(:project_id => 3, :issue_id => 5, :activity_id => activity.id, :spent_on => '2007-05-23', :hours => 10.0)
|
||||
|
||||
get :report, :params => {:project_id => 1, :criteria => ['activity']}
|
||||
assert_response :success
|
||||
|
||||
assert_select 'tr.last-level:first' do
|
||||
assert_select 'td.name', :text => 'Design'
|
||||
assert_select 'td.hours:last', :text => '165.25'
|
||||
end
|
||||
end
|
||||
|
||||
def test_report_all_projects_csv_export
|
||||
get :report, :params => {
|
||||
:columns => 'month',
|
||||
|
||||
Reference in New Issue
Block a user