diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-08-21 17:14:53 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-08-21 17:14:53 +0000 |
commit | 554d6bcba253d76ee89dcff05583d3d58d46184c (patch) | |
tree | 177c235a207b921a2bdb20372d43e46287047d24 | |
parent | 4fcec69a40bf55e0c754df2dda34870864e6d4c9 (diff) | |
download | redmine-554d6bcba253d76ee89dcff05583d3d58d46184c.tar.gz redmine-554d6bcba253d76ee89dcff05583d3d58d46184c.zip |
Merged r10222 from trunk to 1.4-stable (#11665)
add position to DocumentCategory in enumerations fixture.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.4-stable@10223 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/fixtures/enumerations.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/fixtures/enumerations.yml b/test/fixtures/enumerations.yml index 93e7182c9..2c4c82e90 100644 --- a/test/fixtures/enumerations.yml +++ b/test/fixtures/enumerations.yml @@ -4,16 +4,19 @@ enumerations_001: id: 1 type: DocumentCategory active: true + position: 1 enumerations_002: name: User documentation id: 2 type: DocumentCategory active: true + position: 2 enumerations_003: name: Technical documentation id: 3 type: DocumentCategory active: true + position: 3 enumerations_004: name: Low id: 4 @@ -92,3 +95,4 @@ enumerations_016: id: 16 type: DocumentCategory active: false + position: 4 |