diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-04 11:54:22 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-04-04 11:54:22 +0000 |
commit | c2baf187ac6688382eeb0f8baad8898ccb78ea2f (patch) | |
tree | 158aad27c5ab92c16888285b576ab449bb9a196a /test/fixtures | |
parent | 2029df01ae9b2827db74dc5ad78ac9e9d21a5c38 (diff) | |
download | redmine-c2baf187ac6688382eeb0f8baad8898ccb78ea2f.tar.gz redmine-c2baf187ac6688382eeb0f8baad8898ccb78ea2f.zip |
add functional tests for bulk edit time entries (#7996).
Contributed by Adam Soltys.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5315 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/custom_fields.yml | 14 | ||||
-rw-r--r-- | test/fixtures/time_entries.yml | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/test/fixtures/custom_fields.yml b/test/fixtures/custom_fields.yml index c80f85dfc..b99de35a3 100644 --- a/test/fixtures/custom_fields.yml +++ b/test/fixtures/custom_fields.yml @@ -129,3 +129,17 @@ custom_fields_009: field_format: date default_value: "" editable: true +custom_fields_010: + name: Overtime + min_length: 0 + regexp: "" + is_for_all: false + is_filter: false + type: TimeEntryCustomField + max_length: 0 + possible_values: "" + id: 10 + is_required: false + field_format: bool + default_value: 0 + editable: true diff --git a/test/fixtures/time_entries.yml b/test/fixtures/time_entries.yml index f56b05aa5..1b3c9caf3 100644 --- a/test/fixtures/time_entries.yml +++ b/test/fixtures/time_entries.yml @@ -55,4 +55,18 @@ time_entries_004: hours: 7.65 user_id: 1 tyear: 2007 +time_entries_005: + created_on: 2011-03-22 12:20:48 +02:00 + tweek: 12 + tmonth: 3 + project_id: 5 + comments: Time spent on a subproject + updated_on: 2011-03-22 12:20:48 +02:00 + activity_id: 10 + spent_on: 2011-03-22 + issue_id: + id: 5 + hours: 7.65 + user_id: 1 + tyear: 2011 |