diff options
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/enumerations.yml | 23 | ||||
-rw-r--r-- | test/fixtures/issues.yml | 4 |
2 files changed, 24 insertions, 3 deletions
diff --git a/test/fixtures/enumerations.yml b/test/fixtures/enumerations.yml index 22a581ab9..6e7983e8a 100644 --- a/test/fixtures/enumerations.yml +++ b/test/fixtures/enumerations.yml @@ -3,46 +3,67 @@ enumerations_001: name: Uncategorized
id: 1
opt: DCAT
+ type: DocumentCategory
enumerations_002:
name: User documentation
id: 2
opt: DCAT
+ type: DocumentCategory
enumerations_003:
name: Technical documentation
id: 3
opt: DCAT
+ type: DocumentCategory
enumerations_004:
name: Low
id: 4
opt: IPRI
+ type: IssuePriority
enumerations_005:
name: Normal
id: 5
opt: IPRI
+ type: IssuePriority
is_default: true
enumerations_006:
name: High
id: 6
opt: IPRI
+ type: IssuePriority
enumerations_007:
name: Urgent
id: 7
opt: IPRI
+ type: IssuePriority
enumerations_008:
name: Immediate
id: 8
opt: IPRI
+ type: IssuePriority
enumerations_009:
name: Design
id: 9
opt: ACTI
+ type: TimeEntryActivity
enumerations_010:
name: Development
id: 10
opt: ACTI
+ type: TimeEntryActivity
is_default: true
enumerations_011:
name: QA
id: 11
opt: ACTI
-
\ No newline at end of file + type: TimeEntryActivity
+enumerations_012:
+ name: Default Enumeration
+ id: 12
+ opt: ''
+ type: Enumeration
+ is_default: true
+enumerations_013:
+ name: Another Enumeration
+ id: 13
+ opt: ''
+ type: Enumeration
diff --git a/test/fixtures/issues.yml b/test/fixtures/issues.yml index 856f80289..b66f2eb41 100644 --- a/test/fixtures/issues.yml +++ b/test/fixtures/issues.yml @@ -95,7 +95,7 @@ issues_007: created_on: <%= 10.days.ago.to_date.to_s(:db) %>
project_id: 1
updated_on: <%= 10.days.ago.to_date.to_s(:db) %>
- priority_id: 3
+ priority_id: 5
subject: Issue due today
id: 7
fixed_version_id:
@@ -112,7 +112,7 @@ issues_008: created_on: <%= 10.days.ago.to_date.to_s(:db) %>
project_id: 1
updated_on: <%= 10.days.ago.to_date.to_s(:db) %>
- priority_id: 3
+ priority_id: 5
subject: Closed issue
id: 8
fixed_version_id:
|