pivotal-tracker 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -1
- data/Gemfile +4 -5
- data/Gemfile.lock +40 -0
- data/LICENSE +1 -1
- data/README.rdoc +28 -16
- data/Rakefile +9 -6
- data/VERSION +1 -1
- data/lib/pivotal-tracker/attachment.rb +16 -0
- data/lib/pivotal-tracker/project.rb +11 -0
- data/lib/pivotal-tracker/story.rb +39 -6
- data/lib/pivotal-tracker.rb +1 -0
- data/pivotal-tracker.gemspec +29 -13
- data/spec/fixtures/activity.xml +107 -148
- data/spec/fixtures/created_note.xml +6 -6
- data/spec/fixtures/created_story.xml +6 -6
- data/spec/fixtures/iterations_all.xml +191 -46
- data/spec/fixtures/iterations_backlog.xml +136 -67
- data/spec/fixtures/iterations_current.xml +17 -62
- data/spec/fixtures/iterations_done.xml +20 -29
- data/spec/fixtures/memberships.xml +25 -12
- data/spec/fixtures/notes.xml +26 -10
- data/spec/fixtures/project.xml +26 -17
- data/spec/fixtures/project_activity.xml +85 -89
- data/spec/fixtures/projects.xml +37 -632
- data/spec/fixtures/stale_fish.yml +26 -26
- data/spec/fixtures/stories.xml +197 -131
- data/spec/fixtures/tasks.xml +6 -6
- data/spec/spec_helper.rb +4 -2
- data/spec/support/stale_fish_fixtures.rb +17 -13
- data/spec/unit/pivotal-tracker/attachment_spec.rb +62 -0
- data/spec/unit/pivotal-tracker/membership_spec.rb +2 -2
- data/spec/unit/pivotal-tracker/note_spec.rb +11 -11
- data/spec/unit/pivotal-tracker/project_spec.rb +11 -3
- data/spec/unit/pivotal-tracker/story_spec.rb +73 -24
- data/spec/unit/pivotal-tracker/task_spec.rb +3 -3
- metadata +103 -25
@@ -3,89 +3,234 @@
|
|
3
3
|
<iteration>
|
4
4
|
<id type="integer">1</id>
|
5
5
|
<number type="integer">1</number>
|
6
|
-
<start type="datetime">2010/
|
7
|
-
<finish type="datetime">2010/
|
6
|
+
<start type="datetime">2010/07/12 05:00:00 UTC</start>
|
7
|
+
<finish type="datetime">2010/07/19 05:00:00 UTC</finish>
|
8
8
|
<stories type="array">
|
9
9
|
<story>
|
10
|
-
<id type="integer">
|
11
|
-
<project_id type="integer">
|
10
|
+
<id type="integer">4460116</id>
|
11
|
+
<project_id type="integer">102622</project_id>
|
12
12
|
<story_type>feature</story_type>
|
13
|
-
<url>http://www.pivotaltracker.com/story/show/
|
13
|
+
<url>http://www.pivotaltracker.com/story/show/4460116</url>
|
14
|
+
<estimate type="integer">0</estimate>
|
15
|
+
<current_state>accepted</current_state>
|
16
|
+
<description>This is a story that's finished.</description>
|
17
|
+
<name>Old, accepted story</name>
|
18
|
+
<requested_by>Jon Mischo</requested_by>
|
19
|
+
<created_at type="datetime">2010/07/27 21:58:28 UTC</created_at>
|
20
|
+
<updated_at type="datetime">2010/07/27 22:21:17 UTC</updated_at>
|
21
|
+
<accepted_at type="datetime">2010/07/18 17:00:00 UTC</accepted_at>
|
22
|
+
</story>
|
23
|
+
</stories>
|
24
|
+
</iteration>
|
25
|
+
<iteration>
|
26
|
+
<id type="integer">2</id>
|
27
|
+
<number type="integer">2</number>
|
28
|
+
<start type="datetime">2010/07/19 05:00:00 UTC</start>
|
29
|
+
<finish type="datetime">2010/07/26 05:00:00 UTC</finish>
|
30
|
+
<stories type="array">
|
31
|
+
</stories>
|
32
|
+
</iteration>
|
33
|
+
<iteration>
|
34
|
+
<id type="integer">3</id>
|
35
|
+
<number type="integer">3</number>
|
36
|
+
<start type="datetime">2010/07/26 05:00:00 UTC</start>
|
37
|
+
<finish type="datetime">2010/08/02 05:00:00 UTC</finish>
|
38
|
+
<stories type="array">
|
39
|
+
<story>
|
40
|
+
<id type="integer">4459994</id>
|
41
|
+
<project_id type="integer">102622</project_id>
|
42
|
+
<story_type>feature</story_type>
|
43
|
+
<url>http://www.pivotaltracker.com/story/show/4459994</url>
|
14
44
|
<estimate type="integer">2</estimate>
|
15
45
|
<current_state>unstarted</current_state>
|
16
|
-
<description>
|
46
|
+
<description>Generic description</description>
|
17
47
|
<name>Tasks Test</name>
|
18
|
-
<requested_by>
|
19
|
-
<
|
20
|
-
<
|
21
|
-
<updated_at type="datetime">2010/02/25 11:55:30 MST</updated_at>
|
22
|
-
<labels>test_dependent</labels>
|
48
|
+
<requested_by>Jon Mischo</requested_by>
|
49
|
+
<created_at type="datetime">2010/07/27 21:51:01 UTC</created_at>
|
50
|
+
<updated_at type="datetime">2010/07/27 22:20:46 UTC</updated_at>
|
23
51
|
<tasks type="array">
|
24
52
|
<task>
|
25
|
-
<id type="integer">
|
53
|
+
<id type="integer">468113</id>
|
26
54
|
<description>Task number 1</description>
|
27
55
|
<position>1</position>
|
28
56
|
<complete>false</complete>
|
29
|
-
<created_at type="datetime">2010/
|
57
|
+
<created_at type="datetime">2010/07/27 21:51:28 UTC</created_at>
|
30
58
|
</task>
|
31
59
|
<task>
|
32
|
-
<id type="integer">
|
60
|
+
<id type="integer">468114</id>
|
33
61
|
<description>Number 2 Task</description>
|
34
62
|
<position>2</position>
|
35
63
|
<complete>false</complete>
|
36
|
-
<created_at type="datetime">2010/
|
64
|
+
<created_at type="datetime">2010/07/27 21:51:32 UTC</created_at>
|
37
65
|
</task>
|
38
66
|
<task>
|
39
|
-
<id type="integer">
|
67
|
+
<id type="integer">468117</id>
|
40
68
|
<description>3rd task is a charm</description>
|
41
69
|
<position>3</position>
|
42
70
|
<complete>true</complete>
|
43
|
-
<created_at type="datetime">2010/
|
71
|
+
<created_at type="datetime">2010/07/27 21:51:42 UTC</created_at>
|
44
72
|
</task>
|
45
73
|
</tasks>
|
46
74
|
</story>
|
75
|
+
</stories>
|
76
|
+
</iteration>
|
77
|
+
<iteration>
|
78
|
+
<id type="integer">4</id>
|
79
|
+
<number type="integer">4</number>
|
80
|
+
<start type="datetime">2010/08/02 05:00:00 UTC</start>
|
81
|
+
<finish type="datetime">2010/08/09 05:00:00 UTC</finish>
|
82
|
+
<stories type="array">
|
83
|
+
<story>
|
84
|
+
<id type="integer">4460038</id>
|
85
|
+
<project_id type="integer">102622</project_id>
|
86
|
+
<story_type>feature</story_type>
|
87
|
+
<url>http://www.pivotaltracker.com/story/show/4460038</url>
|
88
|
+
<estimate type="integer">1</estimate>
|
89
|
+
<current_state>unstarted</current_state>
|
90
|
+
<description>This is a story that has comments.</description>
|
91
|
+
<name>This is for comments</name>
|
92
|
+
<requested_by>Jon Mischo</requested_by>
|
93
|
+
<created_at type="datetime">2010/07/27 21:53:16 UTC</created_at>
|
94
|
+
<updated_at type="datetime">2010/07/27 22:20:48 UTC</updated_at>
|
95
|
+
<notes type="array">
|
96
|
+
<note>
|
97
|
+
<id type="integer">2111593</id>
|
98
|
+
<text>This is a comment...whee!</text>
|
99
|
+
<author>Jon</author>
|
100
|
+
<noted_at type="datetime">2010/07/27 22:15:48 UTC</noted_at>
|
101
|
+
</note>
|
102
|
+
<note>
|
103
|
+
<id type="integer">2128955</id>
|
104
|
+
<text>Test note</text>
|
105
|
+
<author>Test Suite Access</author>
|
106
|
+
<noted_at type="datetime">2010/07/29 18:15:09 UTC</noted_at>
|
107
|
+
</note>
|
108
|
+
<note>
|
109
|
+
<id type="integer">2128959</id>
|
110
|
+
<text>Test note</text>
|
111
|
+
<author>Test Suite Access</author>
|
112
|
+
<noted_at type="datetime">2010/07/29 18:16:12 UTC</noted_at>
|
113
|
+
</note>
|
114
|
+
<note>
|
115
|
+
<id type="integer">2129077</id>
|
116
|
+
<text>Test note</text>
|
117
|
+
<author>Test Suite Access</author>
|
118
|
+
<noted_at type="datetime">2010/07/29 18:22:26 UTC</noted_at>
|
119
|
+
</note>
|
120
|
+
<note>
|
121
|
+
<id type="integer">2129374</id>
|
122
|
+
<text>Test note</text>
|
123
|
+
<author>Test Suite Access</author>
|
124
|
+
<noted_at type="datetime">2010/07/29 18:55:44 UTC</noted_at>
|
125
|
+
</note>
|
126
|
+
</notes>
|
127
|
+
</story>
|
128
|
+
</stories>
|
129
|
+
</iteration>
|
130
|
+
<iteration>
|
131
|
+
<id type="integer">5</id>
|
132
|
+
<number type="integer">5</number>
|
133
|
+
<start type="datetime">2010/08/09 05:00:00 UTC</start>
|
134
|
+
<finish type="datetime">2010/08/16 05:00:00 UTC</finish>
|
135
|
+
<stories type="array">
|
47
136
|
<story>
|
48
|
-
<id type="integer">
|
49
|
-
<project_id type="integer">
|
137
|
+
<id type="integer">4460598</id>
|
138
|
+
<project_id type="integer">102622</project_id>
|
50
139
|
<story_type>feature</story_type>
|
51
|
-
<url>http://www.pivotaltracker.com/story/show/
|
140
|
+
<url>http://www.pivotaltracker.com/story/show/4460598</url>
|
52
141
|
<estimate type="integer">3</estimate>
|
53
142
|
<current_state>unstarted</current_state>
|
54
|
-
<description
|
55
|
-
<name>
|
56
|
-
<requested_by>
|
57
|
-
<created_at type="datetime">2010/
|
58
|
-
<updated_at type="datetime">2010/
|
59
|
-
<
|
143
|
+
<description>This story has attachments.</description>
|
144
|
+
<name>Story with attachments</name>
|
145
|
+
<requested_by>Jon Mischo</requested_by>
|
146
|
+
<created_at type="datetime">2010/07/27 22:33:13 UTC</created_at>
|
147
|
+
<updated_at type="datetime">2010/07/27 22:33:28 UTC</updated_at>
|
148
|
+
<attachments type="array">
|
149
|
+
<attachment>
|
150
|
+
<id type="integer">491576</id>
|
151
|
+
<filename>LICENSE</filename>
|
152
|
+
<description></description>
|
153
|
+
<uploaded_by>Jon</uploaded_by>
|
154
|
+
<uploaded_at type="datetime">2010/07/27 22:34:23 UTC</uploaded_at>
|
155
|
+
<url>http://www.pivotaltracker.com/resource/download/491576</url>
|
156
|
+
</attachment>
|
157
|
+
<attachment>
|
158
|
+
<id type="integer">493019</id>
|
159
|
+
<filename>README.rdoc</filename>
|
160
|
+
<description>README file from api gem</description>
|
161
|
+
<uploaded_by>Jon</uploaded_by>
|
162
|
+
<uploaded_at type="datetime">2010/07/28 15:16:18 UTC</uploaded_at>
|
163
|
+
<url>http://www.pivotaltracker.com/resource/download/493019</url>
|
164
|
+
</attachment>
|
165
|
+
</attachments>
|
60
166
|
</story>
|
167
|
+
</stories>
|
168
|
+
</iteration>
|
169
|
+
<iteration>
|
170
|
+
<id type="integer">6</id>
|
171
|
+
<number type="integer">6</number>
|
172
|
+
<start type="datetime">2010/08/16 05:00:00 UTC</start>
|
173
|
+
<finish type="datetime">2010/08/23 05:00:00 UTC</finish>
|
174
|
+
<stories type="array">
|
61
175
|
<story>
|
62
|
-
<id type="integer">
|
63
|
-
<project_id type="integer">
|
176
|
+
<id type="integer">4473735</id>
|
177
|
+
<project_id type="integer">102622</project_id>
|
64
178
|
<story_type>feature</story_type>
|
65
|
-
<url>http://www.pivotaltracker.com/story/show/
|
66
|
-
<estimate type="integer">
|
179
|
+
<url>http://www.pivotaltracker.com/story/show/4473735</url>
|
180
|
+
<estimate type="integer">1</estimate>
|
67
181
|
<current_state>unstarted</current_state>
|
68
182
|
<description></description>
|
69
|
-
<name>
|
70
|
-
<requested_by>
|
71
|
-
<created_at type="datetime">2010/
|
72
|
-
<updated_at type="datetime">2010/
|
73
|
-
<
|
183
|
+
<name>Attachment upload test story</name>
|
184
|
+
<requested_by>Jon</requested_by>
|
185
|
+
<created_at type="datetime">2010/07/28 18:17:33 UTC</created_at>
|
186
|
+
<updated_at type="datetime">2010/07/28 18:17:44 UTC</updated_at>
|
187
|
+
<attachments type="array">
|
188
|
+
<attachment>
|
189
|
+
<id type="integer">495851</id>
|
190
|
+
<filename>LICENSE</filename>
|
191
|
+
<description></description>
|
192
|
+
<uploaded_by>Test Suite Access</uploaded_by>
|
193
|
+
<uploaded_at type="datetime">2010/07/29 19:07:19 UTC</uploaded_at>
|
194
|
+
<url>http://www.pivotaltracker.com/resource/download/495851</url>
|
195
|
+
</attachment>
|
196
|
+
<attachment>
|
197
|
+
<id type="integer">495856</id>
|
198
|
+
<filename>LICENSE</filename>
|
199
|
+
<description></description>
|
200
|
+
<uploaded_by>Test Suite Access</uploaded_by>
|
201
|
+
<uploaded_at type="datetime">2010/07/29 19:09:27 UTC</uploaded_at>
|
202
|
+
<url>http://www.pivotaltracker.com/resource/download/495856</url>
|
203
|
+
</attachment>
|
204
|
+
<attachment>
|
205
|
+
<id type="integer">495858</id>
|
206
|
+
<filename>LICENSE</filename>
|
207
|
+
<description></description>
|
208
|
+
<uploaded_by>Test Suite Access</uploaded_by>
|
209
|
+
<uploaded_at type="datetime">2010/07/29 19:11:44 UTC</uploaded_at>
|
210
|
+
<url>http://www.pivotaltracker.com/resource/download/495858</url>
|
211
|
+
</attachment>
|
212
|
+
<attachment>
|
213
|
+
<id type="integer">495863</id>
|
214
|
+
<filename>LICENSE</filename>
|
215
|
+
<description></description>
|
216
|
+
<uploaded_by>Test Suite Access</uploaded_by>
|
217
|
+
<uploaded_at type="datetime">2010/07/29 19:13:06 UTC</uploaded_at>
|
218
|
+
<url>http://www.pivotaltracker.com/resource/download/495863</url>
|
219
|
+
</attachment>
|
220
|
+
</attachments>
|
74
221
|
</story>
|
75
222
|
<story>
|
76
|
-
<id type="integer">
|
77
|
-
<project_id type="integer">
|
223
|
+
<id type="integer">4490874</id>
|
224
|
+
<project_id type="integer">102622</project_id>
|
78
225
|
<story_type>feature</story_type>
|
79
|
-
<url>http://www.pivotaltracker.com/story/show/
|
80
|
-
<estimate type="integer">
|
226
|
+
<url>http://www.pivotaltracker.com/story/show/4490874</url>
|
227
|
+
<estimate type="integer">0</estimate>
|
81
228
|
<current_state>unstarted</current_state>
|
82
|
-
<description
|
83
|
-
<name>
|
84
|
-
<requested_by>
|
85
|
-
<
|
86
|
-
<
|
87
|
-
<updated_at type="datetime">2010/03/01 15:51:05 MST</updated_at>
|
88
|
-
<labels>test_dependent</labels>
|
229
|
+
<description></description>
|
230
|
+
<name>Movable Story</name>
|
231
|
+
<requested_by>Test Suite Access</requested_by>
|
232
|
+
<created_at type="datetime">2010/07/29 18:12:31 UTC</created_at>
|
233
|
+
<updated_at type="datetime">2010/07/29 19:13:12 UTC</updated_at>
|
89
234
|
</story>
|
90
235
|
</stories>
|
91
236
|
</iteration>
|
@@ -1,93 +1,162 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<iterations type="array">
|
3
3
|
<iteration>
|
4
|
-
<id type="integer">
|
5
|
-
<number type="integer">
|
6
|
-
<start type="datetime">2010/
|
7
|
-
<finish type="datetime">2010/
|
4
|
+
<id type="integer">4</id>
|
5
|
+
<number type="integer">4</number>
|
6
|
+
<start type="datetime">2010/08/02 05:00:00 UTC</start>
|
7
|
+
<finish type="datetime">2010/08/09 05:00:00 UTC</finish>
|
8
8
|
<stories type="array">
|
9
9
|
<story>
|
10
|
-
<id type="integer">
|
11
|
-
<project_id type="integer">
|
10
|
+
<id type="integer">4460038</id>
|
11
|
+
<project_id type="integer">102622</project_id>
|
12
12
|
<story_type>feature</story_type>
|
13
|
-
<url>http://www.pivotaltracker.com/story/show/
|
14
|
-
<estimate type="integer">
|
13
|
+
<url>http://www.pivotaltracker.com/story/show/4460038</url>
|
14
|
+
<estimate type="integer">1</estimate>
|
15
15
|
<current_state>unstarted</current_state>
|
16
|
-
<description>This is
|
17
|
-
<name>
|
18
|
-
<requested_by>
|
19
|
-
<
|
20
|
-
<
|
21
|
-
<
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
<
|
26
|
-
<
|
27
|
-
|
28
|
-
|
29
|
-
<
|
30
|
-
|
31
|
-
|
32
|
-
<
|
33
|
-
|
34
|
-
|
35
|
-
<
|
36
|
-
<
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
<
|
42
|
-
<
|
43
|
-
<
|
44
|
-
|
45
|
-
|
16
|
+
<description>This is a story that has comments.</description>
|
17
|
+
<name>This is for comments</name>
|
18
|
+
<requested_by>Jon Mischo</requested_by>
|
19
|
+
<created_at type="datetime">2010/07/27 21:53:16 UTC</created_at>
|
20
|
+
<updated_at type="datetime">2010/07/27 22:20:48 UTC</updated_at>
|
21
|
+
<notes type="array">
|
22
|
+
<note>
|
23
|
+
<id type="integer">2111593</id>
|
24
|
+
<text>This is a comment...whee!</text>
|
25
|
+
<author>Jon</author>
|
26
|
+
<noted_at type="datetime">2010/07/27 22:15:48 UTC</noted_at>
|
27
|
+
</note>
|
28
|
+
<note>
|
29
|
+
<id type="integer">2128955</id>
|
30
|
+
<text>Test note</text>
|
31
|
+
<author>Test Suite Access</author>
|
32
|
+
<noted_at type="datetime">2010/07/29 18:15:09 UTC</noted_at>
|
33
|
+
</note>
|
34
|
+
<note>
|
35
|
+
<id type="integer">2128959</id>
|
36
|
+
<text>Test note</text>
|
37
|
+
<author>Test Suite Access</author>
|
38
|
+
<noted_at type="datetime">2010/07/29 18:16:12 UTC</noted_at>
|
39
|
+
</note>
|
40
|
+
<note>
|
41
|
+
<id type="integer">2129077</id>
|
42
|
+
<text>Test note</text>
|
43
|
+
<author>Test Suite Access</author>
|
44
|
+
<noted_at type="datetime">2010/07/29 18:22:26 UTC</noted_at>
|
45
|
+
</note>
|
46
|
+
<note>
|
47
|
+
<id type="integer">2129374</id>
|
48
|
+
<text>Test note</text>
|
49
|
+
<author>Test Suite Access</author>
|
50
|
+
<noted_at type="datetime">2010/07/29 18:55:44 UTC</noted_at>
|
51
|
+
</note>
|
52
|
+
</notes>
|
46
53
|
</story>
|
47
54
|
</stories>
|
48
55
|
</iteration>
|
49
56
|
<iteration>
|
50
|
-
<id type="integer">
|
51
|
-
<number type="integer">
|
52
|
-
<start type="datetime">2010/
|
53
|
-
<finish type="datetime">2010/
|
57
|
+
<id type="integer">5</id>
|
58
|
+
<number type="integer">5</number>
|
59
|
+
<start type="datetime">2010/08/09 05:00:00 UTC</start>
|
60
|
+
<finish type="datetime">2010/08/16 05:00:00 UTC</finish>
|
54
61
|
<stories type="array">
|
55
62
|
<story>
|
56
|
-
<id type="integer">
|
57
|
-
<project_id type="integer">
|
63
|
+
<id type="integer">4460598</id>
|
64
|
+
<project_id type="integer">102622</project_id>
|
58
65
|
<story_type>feature</story_type>
|
59
|
-
<url>http://www.pivotaltracker.com/story/show/
|
60
|
-
<estimate type="integer">
|
66
|
+
<url>http://www.pivotaltracker.com/story/show/4460598</url>
|
67
|
+
<estimate type="integer">3</estimate>
|
61
68
|
<current_state>unstarted</current_state>
|
62
|
-
<description
|
63
|
-
<name>
|
64
|
-
<requested_by>
|
65
|
-
<created_at type="datetime">2010/
|
66
|
-
<updated_at type="datetime">2010/
|
67
|
-
<
|
69
|
+
<description>This story has attachments.</description>
|
70
|
+
<name>Story with attachments</name>
|
71
|
+
<requested_by>Jon Mischo</requested_by>
|
72
|
+
<created_at type="datetime">2010/07/27 22:33:13 UTC</created_at>
|
73
|
+
<updated_at type="datetime">2010/07/27 22:33:28 UTC</updated_at>
|
74
|
+
<attachments type="array">
|
75
|
+
<attachment>
|
76
|
+
<id type="integer">491576</id>
|
77
|
+
<filename>LICENSE</filename>
|
78
|
+
<description></description>
|
79
|
+
<uploaded_by>Jon</uploaded_by>
|
80
|
+
<uploaded_at type="datetime">2010/07/27 22:34:23 UTC</uploaded_at>
|
81
|
+
<url>http://www.pivotaltracker.com/resource/download/491576</url>
|
82
|
+
</attachment>
|
83
|
+
<attachment>
|
84
|
+
<id type="integer">493019</id>
|
85
|
+
<filename>README.rdoc</filename>
|
86
|
+
<description>README file from api gem</description>
|
87
|
+
<uploaded_by>Jon</uploaded_by>
|
88
|
+
<uploaded_at type="datetime">2010/07/28 15:16:18 UTC</uploaded_at>
|
89
|
+
<url>http://www.pivotaltracker.com/resource/download/493019</url>
|
90
|
+
</attachment>
|
91
|
+
</attachments>
|
68
92
|
</story>
|
69
93
|
</stories>
|
70
94
|
</iteration>
|
71
95
|
<iteration>
|
72
|
-
<id type="integer">
|
73
|
-
<number type="integer">
|
74
|
-
<start type="datetime">2010/
|
75
|
-
<finish type="datetime">2010/
|
96
|
+
<id type="integer">6</id>
|
97
|
+
<number type="integer">6</number>
|
98
|
+
<start type="datetime">2010/08/16 05:00:00 UTC</start>
|
99
|
+
<finish type="datetime">2010/08/23 05:00:00 UTC</finish>
|
76
100
|
<stories type="array">
|
77
101
|
<story>
|
78
|
-
<id type="integer">
|
79
|
-
<project_id type="integer">
|
102
|
+
<id type="integer">4473735</id>
|
103
|
+
<project_id type="integer">102622</project_id>
|
80
104
|
<story_type>feature</story_type>
|
81
|
-
<url>http://www.pivotaltracker.com/story/show/
|
82
|
-
<estimate type="integer">
|
105
|
+
<url>http://www.pivotaltracker.com/story/show/4473735</url>
|
106
|
+
<estimate type="integer">1</estimate>
|
83
107
|
<current_state>unstarted</current_state>
|
84
|
-
<description
|
85
|
-
<name>
|
86
|
-
<requested_by>
|
87
|
-
<
|
88
|
-
<
|
89
|
-
<
|
90
|
-
|
108
|
+
<description></description>
|
109
|
+
<name>Attachment upload test story</name>
|
110
|
+
<requested_by>Jon</requested_by>
|
111
|
+
<created_at type="datetime">2010/07/28 18:17:33 UTC</created_at>
|
112
|
+
<updated_at type="datetime">2010/07/28 18:17:44 UTC</updated_at>
|
113
|
+
<attachments type="array">
|
114
|
+
<attachment>
|
115
|
+
<id type="integer">495851</id>
|
116
|
+
<filename>LICENSE</filename>
|
117
|
+
<description></description>
|
118
|
+
<uploaded_by>Test Suite Access</uploaded_by>
|
119
|
+
<uploaded_at type="datetime">2010/07/29 19:07:19 UTC</uploaded_at>
|
120
|
+
<url>http://www.pivotaltracker.com/resource/download/495851</url>
|
121
|
+
</attachment>
|
122
|
+
<attachment>
|
123
|
+
<id type="integer">495856</id>
|
124
|
+
<filename>LICENSE</filename>
|
125
|
+
<description></description>
|
126
|
+
<uploaded_by>Test Suite Access</uploaded_by>
|
127
|
+
<uploaded_at type="datetime">2010/07/29 19:09:27 UTC</uploaded_at>
|
128
|
+
<url>http://www.pivotaltracker.com/resource/download/495856</url>
|
129
|
+
</attachment>
|
130
|
+
<attachment>
|
131
|
+
<id type="integer">495858</id>
|
132
|
+
<filename>LICENSE</filename>
|
133
|
+
<description></description>
|
134
|
+
<uploaded_by>Test Suite Access</uploaded_by>
|
135
|
+
<uploaded_at type="datetime">2010/07/29 19:11:44 UTC</uploaded_at>
|
136
|
+
<url>http://www.pivotaltracker.com/resource/download/495858</url>
|
137
|
+
</attachment>
|
138
|
+
<attachment>
|
139
|
+
<id type="integer">495863</id>
|
140
|
+
<filename>LICENSE</filename>
|
141
|
+
<description></description>
|
142
|
+
<uploaded_by>Test Suite Access</uploaded_by>
|
143
|
+
<uploaded_at type="datetime">2010/07/29 19:13:06 UTC</uploaded_at>
|
144
|
+
<url>http://www.pivotaltracker.com/resource/download/495863</url>
|
145
|
+
</attachment>
|
146
|
+
</attachments>
|
147
|
+
</story>
|
148
|
+
<story>
|
149
|
+
<id type="integer">4490874</id>
|
150
|
+
<project_id type="integer">102622</project_id>
|
151
|
+
<story_type>feature</story_type>
|
152
|
+
<url>http://www.pivotaltracker.com/story/show/4490874</url>
|
153
|
+
<estimate type="integer">0</estimate>
|
154
|
+
<current_state>unstarted</current_state>
|
155
|
+
<description></description>
|
156
|
+
<name>Movable Story</name>
|
157
|
+
<requested_by>Test Suite Access</requested_by>
|
158
|
+
<created_at type="datetime">2010/07/29 18:12:31 UTC</created_at>
|
159
|
+
<updated_at type="datetime">2010/07/29 19:13:12 UTC</updated_at>
|
91
160
|
</story>
|
92
161
|
</stories>
|
93
162
|
</iteration>
|
@@ -1,92 +1,47 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<iterations type="array">
|
3
3
|
<iteration>
|
4
|
-
<id type="integer">
|
5
|
-
<number type="integer">
|
6
|
-
<start type="datetime">2010/
|
7
|
-
<finish type="datetime">2010/
|
4
|
+
<id type="integer">3</id>
|
5
|
+
<number type="integer">3</number>
|
6
|
+
<start type="datetime">2010/07/26 05:00:00 UTC</start>
|
7
|
+
<finish type="datetime">2010/08/02 05:00:00 UTC</finish>
|
8
8
|
<stories type="array">
|
9
9
|
<story>
|
10
|
-
<id type="integer">
|
11
|
-
<project_id type="integer">
|
10
|
+
<id type="integer">4459994</id>
|
11
|
+
<project_id type="integer">102622</project_id>
|
12
12
|
<story_type>feature</story_type>
|
13
|
-
<url>http://www.pivotaltracker.com/story/show/
|
13
|
+
<url>http://www.pivotaltracker.com/story/show/4459994</url>
|
14
14
|
<estimate type="integer">2</estimate>
|
15
15
|
<current_state>unstarted</current_state>
|
16
|
-
<description>
|
16
|
+
<description>Generic description</description>
|
17
17
|
<name>Tasks Test</name>
|
18
|
-
<requested_by>
|
19
|
-
<
|
20
|
-
<
|
21
|
-
<updated_at type="datetime">2010/02/25 11:55:30 MST</updated_at>
|
22
|
-
<labels>test_dependent</labels>
|
18
|
+
<requested_by>Jon Mischo</requested_by>
|
19
|
+
<created_at type="datetime">2010/07/27 21:51:01 UTC</created_at>
|
20
|
+
<updated_at type="datetime">2010/07/27 22:20:46 UTC</updated_at>
|
23
21
|
<tasks type="array">
|
24
22
|
<task>
|
25
|
-
<id type="integer">
|
23
|
+
<id type="integer">468113</id>
|
26
24
|
<description>Task number 1</description>
|
27
25
|
<position>1</position>
|
28
26
|
<complete>false</complete>
|
29
|
-
<created_at type="datetime">2010/
|
27
|
+
<created_at type="datetime">2010/07/27 21:51:28 UTC</created_at>
|
30
28
|
</task>
|
31
29
|
<task>
|
32
|
-
<id type="integer">
|
30
|
+
<id type="integer">468114</id>
|
33
31
|
<description>Number 2 Task</description>
|
34
32
|
<position>2</position>
|
35
33
|
<complete>false</complete>
|
36
|
-
<created_at type="datetime">2010/
|
34
|
+
<created_at type="datetime">2010/07/27 21:51:32 UTC</created_at>
|
37
35
|
</task>
|
38
36
|
<task>
|
39
|
-
<id type="integer">
|
37
|
+
<id type="integer">468117</id>
|
40
38
|
<description>3rd task is a charm</description>
|
41
39
|
<position>3</position>
|
42
40
|
<complete>true</complete>
|
43
|
-
<created_at type="datetime">2010/
|
41
|
+
<created_at type="datetime">2010/07/27 21:51:42 UTC</created_at>
|
44
42
|
</task>
|
45
43
|
</tasks>
|
46
44
|
</story>
|
47
|
-
<story>
|
48
|
-
<id type="integer">2524690</id>
|
49
|
-
<project_id type="integer">59022</project_id>
|
50
|
-
<story_type>feature</story_type>
|
51
|
-
<url>http://www.pivotaltracker.com/story/show/2524690</url>
|
52
|
-
<estimate type="integer">3</estimate>
|
53
|
-
<current_state>unstarted</current_state>
|
54
|
-
<description></description>
|
55
|
-
<name>another gem</name>
|
56
|
-
<requested_by>Justin Smestad</requested_by>
|
57
|
-
<created_at type="datetime">2010/02/17 15:42:58 MST</created_at>
|
58
|
-
<updated_at type="datetime">2010/02/17 15:43:07 MST</updated_at>
|
59
|
-
<labels>test_dependent</labels>
|
60
|
-
</story>
|
61
|
-
<story>
|
62
|
-
<id type="integer">2524689</id>
|
63
|
-
<project_id type="integer">59022</project_id>
|
64
|
-
<story_type>feature</story_type>
|
65
|
-
<url>http://www.pivotaltracker.com/story/show/2524689</url>
|
66
|
-
<estimate type="integer">2</estimate>
|
67
|
-
<current_state>unstarted</current_state>
|
68
|
-
<description></description>
|
69
|
-
<name>some gem</name>
|
70
|
-
<requested_by>Justin Smestad</requested_by>
|
71
|
-
<created_at type="datetime">2010/02/17 15:42:52 MST</created_at>
|
72
|
-
<updated_at type="datetime">2010/02/17 15:43:06 MST</updated_at>
|
73
|
-
<labels>test_dependent</labels>
|
74
|
-
</story>
|
75
|
-
<story>
|
76
|
-
<id type="integer">2641089</id>
|
77
|
-
<project_id type="integer">59022</project_id>
|
78
|
-
<story_type>feature</story_type>
|
79
|
-
<url>http://www.pivotaltracker.com/story/show/2641089</url>
|
80
|
-
<estimate type="integer">2</estimate>
|
81
|
-
<current_state>unstarted</current_state>
|
82
|
-
<description>This is just some description.</description>
|
83
|
-
<name>Tasks Test</name>
|
84
|
-
<requested_by>Justin Smestad</requested_by>
|
85
|
-
<owned_by>Terence Lee</owned_by>
|
86
|
-
<created_at type="datetime">2010/03/01 15:51:05 MST</created_at>
|
87
|
-
<updated_at type="datetime">2010/03/01 15:51:05 MST</updated_at>
|
88
|
-
<labels>test_dependent</labels>
|
89
|
-
</story>
|
90
45
|
</stories>
|
91
46
|
</iteration>
|
92
47
|
</iterations>
|