Activity enhancements:

* overall activity view and feed added, link is available on the project list (#423, #494)
* switch added on the project activity view to include subprojects (closes #530)

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1227 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2008-03-11 19:33:38 +00:00
parent 64fb0a561a
commit 624723d0ce
39 changed files with 198 additions and 63 deletions
-9
View File
@@ -126,13 +126,4 @@ class ProjectTest < Test::Unit::TestCase
assert_equal [1, 2, 3], parent.rolled_up_trackers.collect(&:id)
assert_equal [2, 3], child.rolled_up_trackers.collect(&:id)
end
def test_issues_status_changes
journals = @ecookbook.issues_status_changes 3.days.ago.to_date, Date.today
assert_equal 1, journals.size
assert_kind_of Journal, journals.first
journals = @ecookbook.issues_status_changes 30.days.ago.to_date, 10.days.ago.to_date
assert_equal 0, journals.size
end
end