diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-11 19:33:38 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-03-11 19:33:38 +0000 |
commit | 624723d0cef9bd8a9528745f4b75ee22f6b1ad2e (patch) | |
tree | d622adeab661c9e833c260b5f5bdef076b14c034 /test/fixtures | |
parent | 64fb0a561aebbc7583695deba29697f84c620dfb (diff) | |
download | redmine-624723d0cef9bd8a9528745f4b75ee22f6b1ad2e.tar.gz redmine-624723d0cef9bd8a9528745f4b75ee22f6b1ad2e.zip |
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
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/issues.yml | 18 | ||||
-rw-r--r-- | test/fixtures/messages.yml | 4 |
2 files changed, 18 insertions, 4 deletions
diff --git a/test/fixtures/issues.yml b/test/fixtures/issues.yml index b3c662039..4f42d93c4 100644 --- a/test/fixtures/issues.yml +++ b/test/fixtures/issues.yml @@ -44,9 +44,9 @@ issues_003: start_date: <%= 1.day.from_now.to_date.to_s(:db) %>
due_date: <%= 40.day.ago.to_date.to_s(:db) %>
issues_004:
- created_on: 2006-07-19 21:07:27 +02:00
+ created_on: <%= 5.days.ago.to_date.to_s(:db) %>
project_id: 2
- updated_on: 2006-07-19 21:07:27 +02:00
+ updated_on: <%= 2.days.ago.to_date.to_s(:db) %>
priority_id: 4
subject: Issue on project 2
id: 4
@@ -57,4 +57,18 @@ issues_004: assigned_to_id:
author_id: 2
status_id: 1
+issues_005:
+ created_on: <%= 5.days.ago.to_date.to_s(:db) %>
+ project_id: 3
+ updated_on: <%= 2.days.ago.to_date.to_s(:db) %>
+ priority_id: 4
+ subject: Subproject issue
+ id: 5
+ fixed_version_id:
+ category_id:
+ description: This is an issue on a cookbook subproject
+ tracker_id: 1
+ assigned_to_id:
+ author_id: 2
+ status_id: 1
diff --git a/test/fixtures/messages.yml b/test/fixtures/messages.yml index 5bb2438dd..f82f376c1 100644 --- a/test/fixtures/messages.yml +++ b/test/fixtures/messages.yml @@ -45,8 +45,8 @@ messages_004: parent_id:
board_id: 1
messages_005:
- created_on: 2007-09-12 17:18:00 +02:00
- updated_on: 2007-09-12 17:18:00 +02:00
+ created_on: <%= 3.days.ago.to_date.to_s(:db) %>
+ updated_on: <%= 3.days.ago.to_date.to_s(:db) %>
subject: 'RE: post 2'
id: 5
replies_count: 0
|