pt-flow 0.2 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. data/.gitignore +1 -0
  2. data/Rakefile +5 -0
  3. data/lib/pt-flow/ui.rb +21 -13
  4. data/lib/pt-flow/version.rb +1 -1
  5. data/pt-flow.gemspec +1 -0
  6. data/spec/fixtures/activity.xml +177 -0
  7. data/spec/fixtures/backup_stories.xml +270 -0
  8. data/spec/fixtures/bugs.xml +279 -0
  9. data/spec/fixtures/created_note.xml +14 -0
  10. data/spec/fixtures/created_story.xml +14 -0
  11. data/spec/fixtures/features.xml +293 -0
  12. data/spec/fixtures/global_config.yml +1 -1
  13. data/spec/fixtures/iterations_all.xml +243 -0
  14. data/spec/fixtures/iterations_backlog.xml +166 -0
  15. data/spec/fixtures/iterations_current.xml +48 -0
  16. data/spec/fixtures/iterations_current_backlog.xml +211 -0
  17. data/spec/fixtures/iterations_done.xml +34 -0
  18. data/spec/fixtures/local_config.yml +5 -5
  19. data/spec/fixtures/memberships.xml +42 -0
  20. data/spec/fixtures/notes.xml +33 -0
  21. data/spec/fixtures/project.xml +53 -0
  22. data/spec/fixtures/project_activity.xml +177 -0
  23. data/spec/fixtures/projects.xml +107 -0
  24. data/spec/fixtures/stories.xml +270 -0
  25. data/spec/fixtures/story-4459994.xml +14 -0
  26. data/spec/fixtures/story-4460038.xml +46 -0
  27. data/spec/fixtures/story-4460598.xml +32 -0
  28. data/spec/fixtures/story-4473735.xml +48 -0
  29. data/spec/fixtures/story.xml +14 -0
  30. data/spec/fixtures/tasks.xml +24 -0
  31. data/spec/fixtures/update_tasks.xml +8 -0
  32. data/spec/lib/pt-flow/ui_spec.rb +79 -28
  33. data/spec/spec_helper.rb +2 -1
  34. data/spec/support/dummy.rb +14 -0
  35. data/spec/support/fixture_macros.rb +13 -0
  36. data/spec/support/git_macros.rb +9 -0
  37. data/spec/support/webmock.rb +5 -0
  38. metadata +104 -12
data/.gitignore CHANGED
@@ -16,3 +16,4 @@ test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
18
  .pt
19
+ spec/fixtures/dummy/
data/Rakefile CHANGED
@@ -1,2 +1,7 @@
1
1
  #!/usr/bin/env rake
2
2
  require "bundler/gem_tasks"
3
+
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+ task :default => :spec
data/lib/pt-flow/ui.rb CHANGED
@@ -13,36 +13,36 @@ class PT::Flow::UI < PT::UI
13
13
  estimate_task(task, ask("How many points do you estimate for it? (#{@project.point_scale})")) if task.estimate && task.estimate < 0
14
14
  assign_task(task, @local_config[:user_name])
15
15
  start_task(task)
16
- `git checkout -B #{current_target}-#{task.id}`
16
+ run("git checkout -B #{current_target}-#{task.id}")
17
17
  end
18
18
 
19
19
  def finish
20
- `git push origin #{current_branch}`
20
+ run("git push origin #{current_branch}")
21
21
  task = PivotalTracker::Story.find(current_task_id, @project.id)
22
22
  finish_task(task)
23
23
  pull_request_url = "#{github_page_url}/pull/new/#{current_target}...#{current_branch}?title=#{task.name} [##{task.id}]&body=#{task.url}"
24
- `open '#{pull_request_url}'`
24
+ run("open '#{pull_request_url}'")
25
25
  end
26
26
 
27
27
  def deliver
28
- `git fetch`
29
- `git checkout #{current_target}`
30
- `git pull --rebase origin #{current_target}`
31
- `git merge #{current_branch}`
32
- `git push origin #{current_target}`
33
- `git push origin :#{current_branch}`
34
- `git branch -d #{current_branch}`
28
+ run('git fetch')
29
+ run("git checkout #{current_target}")
30
+ run("git pull --rebase origin #{current_target}")
31
+ run("git merge #{current_branch}")
32
+ run("git push origin #{current_target}")
33
+ run("git push origin :#{current_branch}")
34
+ run("git branch -d #{current_branch}")
35
35
  task = PivotalTracker::Story.find(current_task_id, @project.id)
36
36
  deliver_task(task)
37
37
  end
38
38
 
39
39
  def cleanup
40
40
  # Update our list of remotes
41
- `git fetch`
42
- `git remote prune origin`
41
+ run("git fetch")
42
+ run("git remote prune origin")
43
43
 
44
44
  # Remove local branches fully merged with origin/master
45
- `git branch --merged origin/master | grep -v 'master$' | xargs git branch -D`
45
+ run("git branch --merged origin/master | grep -v 'master$' | xargs git branch -D")
46
46
 
47
47
  congrats('All clean!')
48
48
  end
@@ -92,4 +92,12 @@ class PT::Flow::UI < PT::UI
92
92
  def current_task_id
93
93
  current_branch.split('-').last
94
94
  end
95
+
96
+ def run(command)
97
+ title(command)
98
+ unless system(command)
99
+ error("Error running: #{command}")
100
+ exit(false)
101
+ end
102
+ end
95
103
  end
@@ -1,5 +1,5 @@
1
1
  module PT
2
2
  module Flow
3
- VERSION = "0.2"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
data/pt-flow.gemspec CHANGED
@@ -18,6 +18,7 @@ Gem::Specification.new do |gem|
18
18
  gem.add_dependency 'pt'
19
19
 
20
20
  gem.add_development_dependency 'rspec', '~> 2.9'
21
+ gem.add_development_dependency 'webmock'
21
22
  gem.add_development_dependency 'guard'
22
23
  gem.add_development_dependency 'guard-rspec'
23
24
  end
@@ -0,0 +1,177 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <activities type="array">
3
+ <activity>
4
+ <id type="integer">24492385</id>
5
+ <version type="integer">206</version>
6
+ <event_type>story_create</event_type>
7
+ <occurred_at type="datetime">2010/07/29 19:13:04 UTC</occurred_at>
8
+ <author>Test Suite Access</author>
9
+ <project_id type="integer">102622</project_id>
10
+ <description>Test Suite Access added &quot;Create stuff&quot;</description>
11
+ <stories>
12
+ <story>
13
+ <id type="integer">4492080</id>
14
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4492080</url>
15
+ <name>Create stuff</name>
16
+ <story_type>feature</story_type>
17
+ <current_state>unscheduled</current_state>
18
+ </story>
19
+ </stories>
20
+ </activity>
21
+ <activity>
22
+ <id type="integer">24492375</id>
23
+ <version type="integer">205</version>
24
+ <event_type>story_create</event_type>
25
+ <occurred_at type="datetime">2010/07/29 19:13:01 UTC</occurred_at>
26
+ <author>Test Suite Access</author>
27
+ <project_id type="integer">102622</project_id>
28
+ <description>Test Suite Access added &quot;Create stuff&quot;</description>
29
+ <stories>
30
+ <story>
31
+ <id type="integer">4492078</id>
32
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4492078</url>
33
+ <name>Create stuff</name>
34
+ <story_type>feature</story_type>
35
+ <current_state>unscheduled</current_state>
36
+ </story>
37
+ </stories>
38
+ </activity>
39
+ <activity>
40
+ <id type="integer">24492239</id>
41
+ <version type="integer">200</version>
42
+ <event_type>story_create</event_type>
43
+ <occurred_at type="datetime">2010/07/29 19:11:43 UTC</occurred_at>
44
+ <author>Test Suite Access</author>
45
+ <project_id type="integer">102622</project_id>
46
+ <description>Test Suite Access added &quot;Create stuff&quot;</description>
47
+ <stories>
48
+ <story>
49
+ <id type="integer">4492060</id>
50
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4492060</url>
51
+ <name>Create stuff</name>
52
+ <story_type>feature</story_type>
53
+ <current_state>unscheduled</current_state>
54
+ </story>
55
+ </stories>
56
+ </activity>
57
+ <activity>
58
+ <id type="integer">24492220</id>
59
+ <version type="integer">199</version>
60
+ <event_type>story_create</event_type>
61
+ <occurred_at type="datetime">2010/07/29 19:11:38 UTC</occurred_at>
62
+ <author>Test Suite Access</author>
63
+ <project_id type="integer">102622</project_id>
64
+ <description>Test Suite Access added &quot;Create stuff&quot;</description>
65
+ <stories>
66
+ <story>
67
+ <id type="integer">4492059</id>
68
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4492059</url>
69
+ <name>Create stuff</name>
70
+ <story_type>feature</story_type>
71
+ <current_state>unscheduled</current_state>
72
+ </story>
73
+ </stories>
74
+ </activity>
75
+ <activity>
76
+ <id type="integer">24491968</id>
77
+ <version type="integer">194</version>
78
+ <event_type>story_create</event_type>
79
+ <occurred_at type="datetime">2010/07/29 19:09:26 UTC</occurred_at>
80
+ <author>Test Suite Access</author>
81
+ <project_id type="integer">102622</project_id>
82
+ <description>Test Suite Access added &quot;Create stuff&quot;</description>
83
+ <stories>
84
+ <story>
85
+ <id type="integer">4491973</id>
86
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4491973</url>
87
+ <name>Create stuff</name>
88
+ <story_type>feature</story_type>
89
+ <current_state>unscheduled</current_state>
90
+ </story>
91
+ </stories>
92
+ </activity>
93
+ <activity>
94
+ <id type="integer">24491959</id>
95
+ <version type="integer">193</version>
96
+ <event_type>story_create</event_type>
97
+ <occurred_at type="datetime">2010/07/29 19:09:24 UTC</occurred_at>
98
+ <author>Test Suite Access</author>
99
+ <project_id type="integer">102622</project_id>
100
+ <description>Test Suite Access added &quot;Create stuff&quot;</description>
101
+ <stories>
102
+ <story>
103
+ <id type="integer">4491971</id>
104
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4491971</url>
105
+ <name>Create stuff</name>
106
+ <story_type>feature</story_type>
107
+ <current_state>unscheduled</current_state>
108
+ </story>
109
+ </stories>
110
+ </activity>
111
+ <activity>
112
+ <id type="integer">24491880</id>
113
+ <version type="integer">192</version>
114
+ <event_type>story_update</event_type>
115
+ <occurred_at type="datetime">2010/07/29 19:08:43 UTC</occurred_at>
116
+ <author>Jon</author>
117
+ <project_id type="integer">102622</project_id>
118
+ <description>Jon edited &quot;Movable Story&quot;</description>
119
+ <stories>
120
+ <story>
121
+ <id type="integer">4490874</id>
122
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4490874</url>
123
+ <estimate type="integer">0</estimate>
124
+ </story>
125
+ </stories>
126
+ </activity>
127
+ <activity>
128
+ <id type="integer">24491859</id>
129
+ <version type="integer">191</version>
130
+ <event_type>story_update</event_type>
131
+ <occurred_at type="datetime">2010/07/29 19:08:36 UTC</occurred_at>
132
+ <author>Jon</author>
133
+ <project_id type="integer">102622</project_id>
134
+ <description>Jon edited &quot;Movable Story&quot;</description>
135
+ <stories>
136
+ <story>
137
+ <id type="integer">4490874</id>
138
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4490874</url>
139
+ <current_state>unstarted</current_state>
140
+ </story>
141
+ </stories>
142
+ </activity>
143
+ <activity>
144
+ <id type="integer">24491236</id>
145
+ <version type="integer">158</version>
146
+ <event_type>story_update</event_type>
147
+ <occurred_at type="datetime">2010/07/29 19:04:29 UTC</occurred_at>
148
+ <author>Jon</author>
149
+ <project_id type="integer">102622</project_id>
150
+ <description>Jon edited &quot;Movable Story&quot;</description>
151
+ <stories>
152
+ <story>
153
+ <id type="integer">4490874</id>
154
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4490874</url>
155
+ <name>Movable Story</name>
156
+ </story>
157
+ </stories>
158
+ </activity>
159
+ <activity>
160
+ <id type="integer">24490623</id>
161
+ <version type="integer">153</version>
162
+ <event_type>story_create</event_type>
163
+ <occurred_at type="datetime">2010/07/29 18:58:45 UTC</occurred_at>
164
+ <author>Test Suite Access</author>
165
+ <project_id type="integer">102622</project_id>
166
+ <description>Test Suite Access added &quot;Create stuff&quot;</description>
167
+ <stories>
168
+ <story>
169
+ <id type="integer">4491800</id>
170
+ <url>http://www.pivotaltracker.com/services/v3/projects/102622/stories/4491800</url>
171
+ <name>Create stuff</name>
172
+ <story_type>feature</story_type>
173
+ <current_state>unscheduled</current_state>
174
+ </story>
175
+ </stories>
176
+ </activity>
177
+ </activities>
@@ -0,0 +1,270 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <stories type="array" count="14" limit="20" total="14">
3
+ <story>
4
+ <id type="integer">4460116</id>
5
+ <project_id type="integer">102622</project_id>
6
+ <story_type>feature</story_type>
7
+ <url>http://www.pivotaltracker.com/story/show/4460116</url>
8
+ <estimate type="integer">0</estimate>
9
+ <current_state>accepted</current_state>
10
+ <description>This is a story that's finished.</description>
11
+ <name>Old, accepted story</name>
12
+ <requested_by>Jon Mischo</requested_by>
13
+ <created_at type="datetime">2010/07/27 21:58:28 UTC</created_at>
14
+ <updated_at type="datetime">2010/07/27 22:21:17 UTC</updated_at>
15
+ <accepted_at type="datetime">2010/07/18 17:00:00 UTC</accepted_at>
16
+ </story>
17
+ <story>
18
+ <id type="integer">4459994</id>
19
+ <project_id type="integer">102622</project_id>
20
+ <story_type>feature</story_type>
21
+ <url>http://www.pivotaltracker.com/story/show/4459994</url>
22
+ <estimate type="integer">-1</estimate>
23
+ <current_state>unstarted</current_state>
24
+ <description>Generic description</description>
25
+ <name>Unestimated Feature</name>
26
+ <requested_by>Jon Mischo</requested_by>
27
+ <created_at type="datetime">2010/07/27 21:51:01 UTC</created_at>
28
+ <updated_at type="datetime">2010/07/27 22:20:46 UTC</updated_at>
29
+ </story>
30
+ <story>
31
+ <id type="integer">4460038</id>
32
+ <project_id type="integer">102622</project_id>
33
+ <story_type>feature</story_type>
34
+ <url>http://www.pivotaltracker.com/story/show/4460038</url>
35
+ <estimate type="integer">1</estimate>
36
+ <current_state>unstarted</current_state>
37
+ <description>This is a story that has comments.</description>
38
+ <name>This is for comments</name>
39
+ <requested_by>Jon Mischo</requested_by>
40
+ <created_at type="datetime">2010/07/27 21:53:16 UTC</created_at>
41
+ <updated_at type="datetime">2010/07/27 22:20:48 UTC</updated_at>
42
+ <notes type="array">
43
+ <note>
44
+ <id type="integer">2111593</id>
45
+ <text>This is a comment...whee!</text>
46
+ <author>Jon</author>
47
+ <noted_at type="datetime">2010/07/27 22:15:48 UTC</noted_at>
48
+ </note>
49
+ <note>
50
+ <id type="integer">2128955</id>
51
+ <text>Test note</text>
52
+ <author>Test Suite Access</author>
53
+ <noted_at type="datetime">2010/07/29 18:15:09 UTC</noted_at>
54
+ </note>
55
+ <note>
56
+ <id type="integer">2128959</id>
57
+ <text>Test note</text>
58
+ <author>Test Suite Access</author>
59
+ <noted_at type="datetime">2010/07/29 18:16:12 UTC</noted_at>
60
+ </note>
61
+ <note>
62
+ <id type="integer">2129077</id>
63
+ <text>Test note</text>
64
+ <author>Test Suite Access</author>
65
+ <noted_at type="datetime">2010/07/29 18:22:26 UTC</noted_at>
66
+ </note>
67
+ <note>
68
+ <id type="integer">2129374</id>
69
+ <text>Test note</text>
70
+ <author>Test Suite Access</author>
71
+ <noted_at type="datetime">2010/07/29 18:55:44 UTC</noted_at>
72
+ </note>
73
+ </notes>
74
+ </story>
75
+ <story>
76
+ <id type="integer">4460598</id>
77
+ <project_id type="integer">102622</project_id>
78
+ <story_type>feature</story_type>
79
+ <url>http://www.pivotaltracker.com/story/show/4460598</url>
80
+ <estimate type="integer">3</estimate>
81
+ <current_state>unstarted</current_state>
82
+ <description>This story has attachments.</description>
83
+ <name>Story with attachments</name>
84
+ <requested_by>Jon Mischo</requested_by>
85
+ <created_at type="datetime">2010/07/27 22:33:13 UTC</created_at>
86
+ <updated_at type="datetime">2010/07/27 22:33:28 UTC</updated_at>
87
+ <attachments type="array">
88
+ <attachment>
89
+ <id type="integer">491576</id>
90
+ <filename>LICENSE</filename>
91
+ <description></description>
92
+ <uploaded_by>Jon</uploaded_by>
93
+ <uploaded_at type="datetime">2010/07/27 22:34:23 UTC</uploaded_at>
94
+ <url>http://www.pivotaltracker.com/resource/download/491576</url>
95
+ </attachment>
96
+ <attachment>
97
+ <id type="integer">493019</id>
98
+ <filename>README.rdoc</filename>
99
+ <description>README file from api gem</description>
100
+ <uploaded_by>Jon</uploaded_by>
101
+ <uploaded_at type="datetime">2010/07/28 15:16:18 UTC</uploaded_at>
102
+ <url>http://www.pivotaltracker.com/resource/download/493019</url>
103
+ </attachment>
104
+ </attachments>
105
+ </story>
106
+ <story>
107
+ <id type="integer">4473735</id>
108
+ <project_id type="integer">102622</project_id>
109
+ <story_type>feature</story_type>
110
+ <url>http://www.pivotaltracker.com/story/show/4473735</url>
111
+ <estimate type="integer">1</estimate>
112
+ <current_state>unstarted</current_state>
113
+ <description></description>
114
+ <name>Attachment upload test story</name>
115
+ <requested_by>Jon</requested_by>
116
+ <created_at type="datetime">2010/07/28 18:17:33 UTC</created_at>
117
+ <updated_at type="datetime">2010/07/28 18:17:44 UTC</updated_at>
118
+ <attachments type="array">
119
+ <attachment>
120
+ <id type="integer">495851</id>
121
+ <filename>LICENSE</filename>
122
+ <description></description>
123
+ <uploaded_by>Test Suite Access</uploaded_by>
124
+ <uploaded_at type="datetime">2010/07/29 19:07:19 UTC</uploaded_at>
125
+ <url>http://www.pivotaltracker.com/resource/download/495851</url>
126
+ </attachment>
127
+ <attachment>
128
+ <id type="integer">495856</id>
129
+ <filename>LICENSE</filename>
130
+ <description></description>
131
+ <uploaded_by>Test Suite Access</uploaded_by>
132
+ <uploaded_at type="datetime">2010/07/29 19:09:27 UTC</uploaded_at>
133
+ <url>http://www.pivotaltracker.com/resource/download/495856</url>
134
+ </attachment>
135
+ <attachment>
136
+ <id type="integer">495858</id>
137
+ <filename>LICENSE</filename>
138
+ <description></description>
139
+ <uploaded_by>Test Suite Access</uploaded_by>
140
+ <uploaded_at type="datetime">2010/07/29 19:11:44 UTC</uploaded_at>
141
+ <url>http://www.pivotaltracker.com/resource/download/495858</url>
142
+ </attachment>
143
+ <attachment>
144
+ <id type="integer">495863</id>
145
+ <filename>LICENSE</filename>
146
+ <description></description>
147
+ <uploaded_by>Test Suite Access</uploaded_by>
148
+ <uploaded_at type="datetime">2010/07/29 19:13:06 UTC</uploaded_at>
149
+ <url>http://www.pivotaltracker.com/resource/download/495863</url>
150
+ </attachment>
151
+ </attachments>
152
+ </story>
153
+ <story>
154
+ <id type="integer">4490874</id>
155
+ <project_id type="integer">102622</project_id>
156
+ <story_type>feature</story_type>
157
+ <url>http://www.pivotaltracker.com/story/show/4490874</url>
158
+ <estimate type="integer">0</estimate>
159
+ <current_state>unstarted</current_state>
160
+ <description></description>
161
+ <name>Movable Story</name>
162
+ <requested_by>Test Suite Access</requested_by>
163
+ <created_at type="datetime">2010/07/29 18:12:31 UTC</created_at>
164
+ <updated_at type="datetime">2010/07/29 19:13:12 UTC</updated_at>
165
+ </story>
166
+ <story>
167
+ <id type="integer">4492080</id>
168
+ <project_id type="integer">102622</project_id>
169
+ <story_type>feature</story_type>
170
+ <url>http://www.pivotaltracker.com/story/show/4492080</url>
171
+ <estimate type="integer">-1</estimate>
172
+ <current_state>unscheduled</current_state>
173
+ <description></description>
174
+ <name>Create stuff</name>
175
+ <requested_by>Test Suite Access</requested_by>
176
+ <created_at type="datetime">2010/07/29 19:13:04 UTC</created_at>
177
+ <updated_at type="datetime">2010/07/29 19:13:04 UTC</updated_at>
178
+ </story>
179
+ <story>
180
+ <id type="integer">4492078</id>
181
+ <project_id type="integer">102622</project_id>
182
+ <story_type>feature</story_type>
183
+ <url>http://www.pivotaltracker.com/story/show/4492078</url>
184
+ <estimate type="integer">-1</estimate>
185
+ <current_state>unscheduled</current_state>
186
+ <description></description>
187
+ <name>Create stuff</name>
188
+ <requested_by>Test Suite Access</requested_by>
189
+ <created_at type="datetime">2010/07/29 19:13:01 UTC</created_at>
190
+ <updated_at type="datetime">2010/07/29 19:13:01 UTC</updated_at>
191
+ </story>
192
+ <story>
193
+ <id type="integer">4492060</id>
194
+ <project_id type="integer">102622</project_id>
195
+ <story_type>feature</story_type>
196
+ <url>http://www.pivotaltracker.com/story/show/4492060</url>
197
+ <estimate type="integer">-1</estimate>
198
+ <current_state>unscheduled</current_state>
199
+ <description></description>
200
+ <name>Create stuff</name>
201
+ <requested_by>Test Suite Access</requested_by>
202
+ <created_at type="datetime">2010/07/29 19:11:43 UTC</created_at>
203
+ <updated_at type="datetime">2010/07/29 19:11:43 UTC</updated_at>
204
+ </story>
205
+ <story>
206
+ <id type="integer">4492059</id>
207
+ <project_id type="integer">102622</project_id>
208
+ <story_type>feature</story_type>
209
+ <url>http://www.pivotaltracker.com/story/show/4492059</url>
210
+ <estimate type="integer">-1</estimate>
211
+ <current_state>unscheduled</current_state>
212
+ <description></description>
213
+ <name>Create stuff</name>
214
+ <requested_by>Test Suite Access</requested_by>
215
+ <created_at type="datetime">2010/07/29 19:11:38 UTC</created_at>
216
+ <updated_at type="datetime">2010/07/29 19:11:38 UTC</updated_at>
217
+ </story>
218
+ <story>
219
+ <id type="integer">4491973</id>
220
+ <project_id type="integer">102622</project_id>
221
+ <story_type>feature</story_type>
222
+ <url>http://www.pivotaltracker.com/story/show/4491973</url>
223
+ <estimate type="integer">-1</estimate>
224
+ <current_state>unscheduled</current_state>
225
+ <description></description>
226
+ <name>Create stuff</name>
227
+ <requested_by>Test Suite Access</requested_by>
228
+ <created_at type="datetime">2010/07/29 19:09:26 UTC</created_at>
229
+ <updated_at type="datetime">2010/07/29 19:09:26 UTC</updated_at>
230
+ </story>
231
+ <story>
232
+ <id type="integer">4491971</id>
233
+ <project_id type="integer">102622</project_id>
234
+ <story_type>feature</story_type>
235
+ <url>http://www.pivotaltracker.com/story/show/4491971</url>
236
+ <estimate type="integer">-1</estimate>
237
+ <current_state>unscheduled</current_state>
238
+ <description></description>
239
+ <name>Create stuff</name>
240
+ <requested_by>Test Suite Access</requested_by>
241
+ <created_at type="datetime">2010/07/29 19:09:24 UTC</created_at>
242
+ <updated_at type="datetime">2010/07/29 19:09:24 UTC</updated_at>
243
+ </story>
244
+ <story>
245
+ <id type="integer">4491741</id>
246
+ <project_id type="integer">102622</project_id>
247
+ <story_type>feature</story_type>
248
+ <url>http://www.pivotaltracker.com/story/show/4491741</url>
249
+ <estimate type="integer">-1</estimate>
250
+ <current_state>unscheduled</current_state>
251
+ <description></description>
252
+ <name>Create Stuff</name>
253
+ <requested_by>Test Suite Access</requested_by>
254
+ <created_at type="datetime">2010/07/29 18:56:02 UTC</created_at>
255
+ <updated_at type="datetime">2010/07/29 18:56:02 UTC</updated_at>
256
+ </story>
257
+ <story>
258
+ <id type="integer">4490944</id>
259
+ <project_id type="integer">102622</project_id>
260
+ <story_type>feature</story_type>
261
+ <url>http://www.pivotaltracker.com/story/show/4490944</url>
262
+ <estimate type="integer">-1</estimate>
263
+ <current_state>unscheduled</current_state>
264
+ <description></description>
265
+ <name>Create Stuff</name>
266
+ <requested_by>Test Suite Access</requested_by>
267
+ <created_at type="datetime">2010/07/29 18:17:23 UTC</created_at>
268
+ <updated_at type="datetime">2010/07/29 18:17:23 UTC</updated_at>
269
+ </story>
270
+ </stories>