branston 0.5.0 → 0.5.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/lib/branston/app/controllers/stories_controller.rb +2 -2
  2. data/lib/branston/app/helpers/iterations_helper.rb +7 -3
  3. data/lib/branston/app/views/stories/index.html.erb +8 -0
  4. data/lib/branston/coverage/app-controllers-application_controller_rb.html +1 -1
  5. data/lib/branston/coverage/app-controllers-iterations_controller_rb.html +1 -1
  6. data/lib/branston/coverage/app-controllers-outcomes_controller_rb.html +1 -1
  7. data/lib/branston/coverage/app-controllers-preconditions_controller_rb.html +1 -1
  8. data/lib/branston/coverage/app-controllers-releases_controller_rb.html +1 -1
  9. data/lib/branston/coverage/app-controllers-scenarios_controller_rb.html +1 -1
  10. data/lib/branston/coverage/app-controllers-sessions_controller_rb.html +1 -1
  11. data/lib/branston/coverage/app-controllers-stories_controller_rb.html +281 -143
  12. data/lib/branston/coverage/app-controllers-user_roles_controller_rb.html +1 -1
  13. data/lib/branston/coverage/app-controllers-users_controller_rb.html +1 -1
  14. data/lib/branston/coverage/app-helpers-application_helper_rb.html +185 -5
  15. data/lib/branston/coverage/app-helpers-iterations_helper_rb.html +107 -47
  16. data/lib/branston/coverage/app-helpers-outcomes_helper_rb.html +1 -1
  17. data/lib/branston/coverage/app-helpers-preconditions_helper_rb.html +1 -1
  18. data/lib/branston/coverage/app-helpers-releases_helper_rb.html +1 -1
  19. data/lib/branston/coverage/app-helpers-sessions_helper_rb.html +1 -1
  20. data/lib/branston/coverage/app-helpers-stories_helper_rb.html +1 -1
  21. data/lib/branston/coverage/app-helpers-user_roles_helper_rb.html +1 -1
  22. data/lib/branston/coverage/app-models-iteration_rb.html +16 -16
  23. data/lib/branston/coverage/app-models-outcome_rb.html +1 -1
  24. data/lib/branston/coverage/app-models-participation_rb.html +1 -1
  25. data/lib/branston/coverage/app-models-precondition_rb.html +1 -1
  26. data/lib/branston/coverage/app-models-release_rb.html +1 -1
  27. data/lib/branston/coverage/app-models-scenario_rb.html +1 -1
  28. data/lib/branston/coverage/app-models-story_rb.html +147 -45
  29. data/lib/branston/coverage/app-models-user_rb.html +1 -1
  30. data/lib/branston/coverage/app-models-user_role_rb.html +1 -1
  31. data/lib/branston/coverage/index.html +48 -48
  32. data/lib/branston/coverage/lib-client_rb.html +1 -1
  33. data/lib/branston/coverage/lib-faker_extras_rb.html +1 -1
  34. data/lib/branston/coverage/lib-story_generator_rb.html +1 -1
  35. data/lib/branston/log/development.log +88 -0
  36. data/lib/branston/log/test.log +5074 -0
  37. data/lib/branston/test/functional/iterations_controller_test.rb +23 -0
  38. metadata +2 -2
@@ -16,8 +16,8 @@ class StoriesController < ApplicationController
16
16
 
17
17
  layout 'main'
18
18
  before_filter :login_required, :except => [:show, :generate_feature]
19
- before_filter :retrieve_iterations, :except => [:generate_feature, :show]
20
- before_filter :load_iteration, :except => [:generate_feature, :show]
19
+ before_filter :retrieve_iterations, :except => [:generate_feature]
20
+ before_filter :load_iteration, :except => [:generate_feature]
21
21
  in_place_edit_for :story, :title
22
22
  in_place_edit_for :story, :description
23
23
  in_place_edit_for :story, :points
@@ -18,7 +18,7 @@ module IterationsHelper
18
18
 
19
19
  work_days = [nil]
20
20
  (iteration.start_date.to_date..iteration.end_date.to_date).to_a.each do |date|
21
- work_days.push date.strftime('%d/%m') unless date.wday == 0 or date.wday == 6
21
+ work_days.push date.strftime('%d/%m') unless is_weekend(date)
22
22
  end
23
23
 
24
24
  # Keep adding the last value to flatline the chart
@@ -38,9 +38,13 @@ module IterationsHelper
38
38
  :data => points_data, :axis_with_labels => 'x,y',
39
39
  :axis_labels => [work_days, y_scale])
40
40
 
41
- end
42
-
43
41
  end
44
42
 
45
43
  end
44
+
45
+ def is_weekend(date)
46
+ date.wday == 0 or date.wday == 5 or date.wday == 6
47
+ end
48
+
49
+ end
46
50
 
@@ -22,6 +22,14 @@ document.observe("dom:loaded", function() {
22
22
  var backlogStories = new Accordion("backlog_stories", 1);
23
23
  //$('accordion-toggle').each(function(e) {e.observe('click', backlogStories.forceExpand);});
24
24
  <% end -%>
25
+ <% unless @completed_stories.nil? or @completed_stories.empty? -%>
26
+ var completedStories = new Accordion("completed_stories", 1);
27
+ //$('accordion-toggle').each(function(e) {e.observe('click', completedStories.forceExpand);});
28
+ <% end -%>
29
+ <% unless @quality_assurance_stories.nil? or @quality_assurance_stories.empty? -%>
30
+ var qualityAssuranceStories = new Accordion("quality_assurance_stories", 1);
31
+ //$('accordion-toggle').each(function(e) {e.observe('click', qualityAssurance.forceExpand);});
32
+ <% end -%>
25
33
  });
26
34
  </script>
27
35
  <% end %>
@@ -225,7 +225,7 @@
225
225
  </tbody>
226
226
  </table>
227
227
 
228
- <p>Generated on Thu Jan 07 15:27:03 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
228
+ <p>Generated on Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
229
229
 
230
230
  </body>
231
231
  </html>
@@ -795,7 +795,7 @@
795
795
  </tbody>
796
796
  </table>
797
797
 
798
- <p>Generated on Thu Jan 07 15:27:03 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
798
+ <p>Generated on Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
799
799
 
800
800
  </body>
801
801
  </html>
@@ -753,7 +753,7 @@
753
753
  </tbody>
754
754
  </table>
755
755
 
756
- <p>Generated on Thu Jan 07 15:27:03 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
756
+ <p>Generated on Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
757
757
 
758
758
  </body>
759
759
  </html>
@@ -777,7 +777,7 @@
777
777
  </tbody>
778
778
  </table>
779
779
 
780
- <p>Generated on Thu Jan 07 15:27:03 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
780
+ <p>Generated on Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
781
781
 
782
782
  </body>
783
783
  </html>
@@ -699,7 +699,7 @@
699
699
  </tbody>
700
700
  </table>
701
701
 
702
- <p>Generated on Thu Jan 07 15:27:03 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
702
+ <p>Generated on Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
703
703
 
704
704
  </body>
705
705
  </html>
@@ -771,7 +771,7 @@
771
771
  </tbody>
772
772
  </table>
773
773
 
774
- <p>Generated on Thu Jan 07 15:27:03 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
774
+ <p>Generated on Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
775
775
 
776
776
  </body>
777
777
  </html>
@@ -405,7 +405,7 @@
405
405
  </tbody>
406
406
  </table>
407
407
 
408
- <p>Generated on Thu Jan 07 15:27:03 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
408
+ <p>Generated on Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
409
409
 
410
410
  </body>
411
411
  </html>
@@ -28,17 +28,17 @@
28
28
  <tbody>
29
29
  <tr>
30
30
  <td class="left_align"><a href="app-controllers-stories_controller_rb.html">app/controllers/stories_controller.rb</a></td>
31
- <td class='right_align'><tt>145</tt></td>
32
- <td class='right_align'><tt>98</tt></td>
33
- <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
31
+ <td class='right_align'><tt>168</tt></td>
32
+ <td class='right_align'><tt>115</tt></td>
33
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>90.48%</tt></div>
34
34
  <div class="percent_graph">
35
- <div class="covered" style="width:100px"></div>
36
- <div class="uncovered" style="width:0px"></div>
35
+ <div class="covered" style="width:90px"></div>
36
+ <div class="uncovered" style="width:10px"></div>
37
37
  </div></td>
38
- <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
38
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>88.70%</tt></div>
39
39
  <div class="percent_graph">
40
- <div class="covered" style="width:100px"></div>
41
- <div class="uncovered" style="width:0px"></div>
40
+ <div class="covered" style="width:89px"></div>
41
+ <div class="uncovered" style="width:11px"></div>
42
42
  </div></td>
43
43
  </tr>
44
44
  </tbody>
@@ -171,763 +171,901 @@
171
171
 
172
172
 
173
173
  <tr class="marked">
174
- <td><pre><a name="line20">20</a> before_filter :load_iteration</pre></td>
175
- </tr>
176
-
177
-
178
-
179
- <tr class="inferred">
180
- <td><pre><a name="line21">21</a> </pre></td>
174
+ <td><pre><a name="line20">20</a> before_filter :load_iteration, :except =&gt; [:generate_feature]</pre></td>
181
175
  </tr>
182
176
 
183
177
 
184
178
 
185
179
  <tr class="marked">
186
- <td><pre><a name="line22">22</a> in_place_edit_for :story, :title</pre></td>
180
+ <td><pre><a name="line21">21</a> in_place_edit_for :story, :title</pre></td>
187
181
  </tr>
188
182
 
189
183
 
190
184
 
191
185
  <tr class="marked">
192
- <td><pre><a name="line23">23</a> in_place_edit_for :story, :description</pre></td>
186
+ <td><pre><a name="line22">22</a> in_place_edit_for :story, :description</pre></td>
193
187
  </tr>
194
188
 
195
189
 
196
190
 
197
191
  <tr class="marked">
198
- <td><pre><a name="line24">24</a> in_place_edit_for :story, :points</pre></td>
192
+ <td><pre><a name="line23">23</a> in_place_edit_for :story, :points</pre></td>
199
193
  </tr>
200
194
 
201
195
 
202
196
 
203
197
  <tr class="inferred">
204
- <td><pre><a name="line25">25</a> </pre></td>
198
+ <td><pre><a name="line24">24</a> </pre></td>
205
199
  </tr>
206
200
 
207
201
 
208
202
 
209
203
  <tr class="marked">
210
- <td><pre><a name="line26">26</a> def generate_feature</pre></td>
204
+ <td><pre><a name="line25">25</a> def generate_feature</pre></td>
211
205
  </tr>
212
206
 
213
207
 
214
208
 
215
209
  <tr class="marked">
216
- <td><pre><a name="line27">27</a> @story = Story.find_by_slug(params[:id])</pre></td>
210
+ <td><pre><a name="line26">26</a> @story = Story.find_by_slug(params[:id])</pre></td>
217
211
  </tr>
218
212
 
219
213
 
220
214
 
221
215
  <tr class="marked">
222
- <td><pre><a name="line28">28</a> if @story.nil?</pre></td>
216
+ <td><pre><a name="line27">27</a> if @story.nil?</pre></td>
223
217
  </tr>
224
218
 
225
219
 
226
220
 
227
221
  <tr class="inferred">
228
- <td><pre><a name="line29">29</a> @story = Story.find(:first, :include =&gt; :scenarios,</pre></td>
222
+ <td><pre><a name="line28">28</a> @story = Story.find(:first, :include =&gt; :scenarios, :conditions =&gt; ['slug LIKE ?', &quot;%#{id}%&quot;] )</pre></td>
229
223
  </tr>
230
224
 
231
225
 
232
226
 
233
227
  <tr class="inferred">
234
- <td><pre><a name="line30">30</a> :conditions =&gt; ['slug LIKE ?', &quot;%#{id}%&quot;] )</pre></td>
228
+ <td><pre><a name="line29">29</a> end</pre></td>
235
229
  </tr>
236
230
 
237
231
 
238
232
 
239
- <tr class="inferred">
240
- <td><pre><a name="line31">31</a> end</pre></td>
233
+ <tr class="marked">
234
+ <td><pre><a name="line30">30</a> @story.generate(@story)</pre></td>
241
235
  </tr>
242
236
 
243
237
 
244
238
 
245
239
  <tr class="marked">
246
- <td><pre><a name="line32">32</a> @story.generate(@story)</pre></td>
240
+ <td><pre><a name="line31">31</a> render :text =&gt; 'done'</pre></td>
247
241
  </tr>
248
242
 
249
243
 
250
244
 
251
- <tr class="marked">
252
- <td><pre><a name="line33">33</a> render :text =&gt; 'done'</pre></td>
245
+ <tr class="inferred">
246
+ <td><pre><a name="line32">32</a> end</pre></td>
253
247
  </tr>
254
248
 
255
249
 
256
250
 
257
251
  <tr class="inferred">
258
- <td><pre><a name="line34">34</a> end</pre></td>
252
+ <td><pre><a name="line33">33</a> </pre></td>
259
253
  </tr>
260
254
 
261
255
 
262
256
 
263
257
  <tr class="inferred">
264
- <td><pre><a name="line35">35</a> </pre></td>
258
+ <td><pre><a name="line34">34</a> # GET /stories</pre></td>
265
259
  </tr>
266
260
 
267
261
 
268
262
 
269
263
  <tr class="inferred">
270
- <td><pre><a name="line36">36</a> # GET /stories</pre></td>
264
+ <td><pre><a name="line35">35</a> # GET /stories.xml</pre></td>
271
265
  </tr>
272
266
 
273
267
 
274
268
 
275
- <tr class="inferred">
276
- <td><pre><a name="line37">37</a> # GET /stories.xml</pre></td>
269
+ <tr class="marked">
270
+ <td><pre><a name="line36">36</a> def index</pre></td>
277
271
  </tr>
278
272
 
279
273
 
280
274
 
281
275
  <tr class="marked">
282
- <td><pre><a name="line38">38</a> def index</pre></td>
276
+ <td><pre><a name="line37">37</a> @current_stories = Story.for_iteration(@iteration.id).in_progress</pre></td>
283
277
  </tr>
284
278
 
285
279
 
286
280
 
287
281
  <tr class="marked">
288
- <td><pre><a name="line39">39</a> @current_stories = Story.for_iteration(@iteration.id).in_progress</pre></td>
282
+ <td><pre><a name="line38">38</a> @backlog_stories = Story.for_iteration(@iteration.id).unassigned</pre></td>
289
283
  </tr>
290
284
 
291
285
 
292
286
 
293
287
  <tr class="marked">
294
- <td><pre><a name="line40">40</a> @backlog_stories = Story.for_iteration(@iteration.id).unassigned</pre></td>
288
+ <td><pre><a name="line39">39</a> @quality_assurance_stories = Story.for_iteration(@iteration.id).in_quality_assurance</pre></td>
295
289
  </tr>
296
290
 
297
291
 
298
292
 
299
293
  <tr class="marked">
300
- <td><pre><a name="line41">41</a> @completed_stories = Story.for_iteration(@iteration.id).completed</pre></td>
294
+ <td><pre><a name="line40">40</a> @completed_stories = Story.for_iteration(@iteration.id).completed</pre></td>
301
295
  </tr>
302
296
 
303
297
 
304
298
 
305
299
  <tr class="inferred">
306
- <td><pre><a name="line42">42</a> </pre></td>
300
+ <td><pre><a name="line41">41</a> </pre></td>
307
301
  </tr>
308
302
 
309
303
 
310
304
 
311
305
  <tr class="marked">
312
- <td><pre><a name="line43">43</a> respond_to do |format|</pre></td>
306
+ <td><pre><a name="line42">42</a> respond_to do |format|</pre></td>
313
307
  </tr>
314
308
 
315
309
 
316
310
 
317
311
  <tr class="marked">
318
- <td><pre><a name="line44">44</a> format.html # index.html.erb</pre></td>
312
+ <td><pre><a name="line43">43</a> format.html # index.html.erb</pre></td>
319
313
  </tr>
320
314
 
321
315
 
322
316
 
323
317
  <tr class="marked">
324
- <td><pre><a name="line45">45</a> format.xml { render :xml =&gt; @stories }</pre></td>
318
+ <td><pre><a name="line44">44</a> format.xml { render :xml =&gt; @stories }</pre></td>
325
319
  </tr>
326
320
 
327
321
 
328
322
 
329
323
  <tr class="inferred">
330
- <td><pre><a name="line46">46</a> end</pre></td>
324
+ <td><pre><a name="line45">45</a> end</pre></td>
331
325
  </tr>
332
326
 
333
327
 
334
328
 
335
329
  <tr class="inferred">
336
- <td><pre><a name="line47">47</a> end</pre></td>
330
+ <td><pre><a name="line46">46</a> end</pre></td>
337
331
  </tr>
338
332
 
339
333
 
340
334
 
341
335
  <tr class="inferred">
342
- <td><pre><a name="line48">48</a> </pre></td>
336
+ <td><pre><a name="line47">47</a> </pre></td>
343
337
  </tr>
344
338
 
345
339
 
346
340
 
347
341
  <tr class="inferred">
348
- <td><pre><a name="line49">49</a> # GET /stories/1</pre></td>
342
+ <td><pre><a name="line48">48</a> # GET /stories/1</pre></td>
349
343
  </tr>
350
344
 
351
345
 
352
346
 
353
347
  <tr class="inferred">
354
- <td><pre><a name="line50">50</a> # GET /stories/1.xml</pre></td>
348
+ <td><pre><a name="line49">49</a> # GET /stories/1.xml</pre></td>
355
349
  </tr>
356
350
 
357
351
 
358
352
 
359
353
  <tr class="marked">
360
- <td><pre><a name="line51">51</a> def show</pre></td>
354
+ <td><pre><a name="line50">50</a> def show</pre></td>
361
355
  </tr>
362
356
 
363
357
 
364
358
 
365
359
  <tr class="marked">
366
- <td><pre><a name="line52">52</a> @story = Story.find_by_slug(params[:id])</pre></td>
360
+ <td><pre><a name="line51">51</a> @story = Story.find_by_slug(params[:id])</pre></td>
367
361
  </tr>
368
362
 
369
363
 
370
364
 
371
365
  <tr class="inferred">
372
- <td><pre><a name="line53">53</a> </pre></td>
366
+ <td><pre><a name="line52">52</a> </pre></td>
373
367
  </tr>
374
368
 
375
369
 
376
370
 
377
371
  <tr class="marked">
378
- <td><pre><a name="line54">54</a> respond_to do |format|</pre></td>
372
+ <td><pre><a name="line53">53</a> respond_to do |format|</pre></td>
379
373
  </tr>
380
374
 
381
375
 
382
376
 
383
377
  <tr class="marked">
384
- <td><pre><a name="line55">55</a> if @story</pre></td>
378
+ <td><pre><a name="line54">54</a> if @story</pre></td>
385
379
  </tr>
386
380
 
387
381
 
388
382
 
389
383
  <tr class="marked">
390
- <td><pre><a name="line56">56</a> format.html {</pre></td>
384
+ <td><pre><a name="line55">55</a> format.html {</pre></td>
391
385
  </tr>
392
386
 
393
387
 
394
388
 
395
389
  <tr class="marked">
396
- <td><pre><a name="line57">57</a> @iteration = load_iteration</pre></td>
390
+ <td><pre><a name="line56">56</a> @iteration = load_iteration</pre></td>
397
391
  </tr>
398
392
 
399
393
 
400
394
 
401
395
  <tr class="inferred">
402
- <td><pre><a name="line58">58</a> }</pre></td>
396
+ <td><pre><a name="line57">57</a> }</pre></td>
403
397
  </tr>
404
398
 
405
399
 
406
400
 
407
401
  <tr class="marked">
408
- <td><pre><a name="line59">59</a> format.xml {</pre></td>
402
+ <td><pre><a name="line58">58</a> format.xml {</pre></td>
409
403
  </tr>
410
404
 
411
405
 
412
406
 
413
407
  <tr class="inferred">
414
- <td><pre><a name="line60">60</a> render :xml =&gt; (@story.to_xml :include =&gt; { :scenarios =&gt; {</pre></td>
408
+ <td><pre><a name="line59">59</a> render :xml =&gt; (@story.to_xml :include =&gt; { :scenarios =&gt; {</pre></td>
415
409
  </tr>
416
410
 
417
411
 
418
412
 
419
413
  <tr class="inferred">
420
- <td><pre><a name="line61">61</a> :include =&gt; [:preconditions, :outcomes] } } ) }</pre></td>
414
+ <td><pre><a name="line60">60</a> :include =&gt; [:preconditions, :outcomes] } } ) }</pre></td>
421
415
  </tr>
422
416
 
423
417
 
424
418
 
425
419
  <tr class="marked">
426
- <td><pre><a name="line62">62</a> format.js { @active = true }</pre></td>
420
+ <td><pre><a name="line61">61</a> format.js { @active = true }</pre></td>
427
421
  </tr>
428
422
 
429
423
 
430
424
 
431
425
  <tr class="inferred">
432
- <td><pre><a name="line63">63</a> else</pre></td>
426
+ <td><pre><a name="line62">62</a> else</pre></td>
433
427
  </tr>
434
428
 
435
429
 
436
430
 
437
431
  <tr class="marked">
438
- <td><pre><a name="line64">64</a> format.html { render_optional_error_file 404 }</pre></td>
432
+ <td><pre><a name="line63">63</a> format.html {</pre></td>
439
433
  </tr>
440
434
 
441
435
 
442
436
 
443
437
  <tr class="marked">
444
- <td><pre><a name="line65">65</a> format.all { render :nothing =&gt; true, :status =&gt; 404 }</pre></td>
438
+ <td><pre><a name="line64">64</a> @iteration = load_iteration</pre></td>
439
+ </tr>
440
+
441
+
442
+
443
+ <tr class="marked">
444
+ <td><pre><a name="line65">65</a> render_optional_error_file 404</pre></td>
445
+ </tr>
446
+
447
+
448
+
449
+ <tr class="inferred">
450
+ <td><pre><a name="line66">66</a> }</pre></td>
451
+ </tr>
452
+
453
+
454
+
455
+ <tr class="marked">
456
+ <td><pre><a name="line67">67</a> format.all { render :nothing =&gt; true, :status =&gt; 404 }</pre></td>
445
457
  </tr>
446
458
 
447
459
 
448
460
 
449
461
  <tr class="inferred">
450
- <td><pre><a name="line66">66</a> end</pre></td>
462
+ <td><pre><a name="line68">68</a> end</pre></td>
451
463
  </tr>
452
464
 
453
465
 
454
466
 
455
467
  <tr class="inferred">
456
- <td><pre><a name="line67">67</a> end</pre></td>
468
+ <td><pre><a name="line69">69</a> end</pre></td>
457
469
  </tr>
458
470
 
459
471
 
460
472
 
461
473
  <tr class="inferred">
462
- <td><pre><a name="line68">68</a> end</pre></td>
474
+ <td><pre><a name="line70">70</a> end</pre></td>
463
475
  </tr>
464
476
 
465
477
 
466
478
 
467
479
  <tr class="inferred">
468
- <td><pre><a name="line69">69</a> </pre></td>
480
+ <td><pre><a name="line71">71</a> </pre></td>
469
481
  </tr>
470
482
 
471
483
 
472
484
 
473
485
  <tr class="inferred">
474
- <td><pre><a name="line70">70</a> # GET /stories/new</pre></td>
486
+ <td><pre><a name="line72">72</a> # GET /stories/new</pre></td>
475
487
  </tr>
476
488
 
477
489
 
478
490
 
479
491
  <tr class="inferred">
480
- <td><pre><a name="line71">71</a> # GET /stories/new.xml</pre></td>
492
+ <td><pre><a name="line73">73</a> # GET /stories/new.xml</pre></td>
481
493
  </tr>
482
494
 
483
495
 
484
496
 
485
497
  <tr class="marked">
486
- <td><pre><a name="line72">72</a> def new</pre></td>
498
+ <td><pre><a name="line74">74</a> def new</pre></td>
487
499
  </tr>
488
500
 
489
501
 
490
502
 
491
503
  <tr class="marked">
492
- <td><pre><a name="line73">73</a> @story = Story.new</pre></td>
504
+ <td><pre><a name="line75">75</a> @story = Story.new(:iteration =&gt; @iteration)</pre></td>
493
505
  </tr>
494
506
 
495
507
 
496
508
 
497
509
  <tr class="inferred">
498
- <td><pre><a name="line74">74</a> </pre></td>
510
+ <td><pre><a name="line76">76</a> </pre></td>
499
511
  </tr>
500
512
 
501
513
 
502
514
 
503
515
  <tr class="marked">
504
- <td><pre><a name="line75">75</a> respond_to do |format|</pre></td>
516
+ <td><pre><a name="line77">77</a> respond_to do |format|</pre></td>
505
517
  </tr>
506
518
 
507
519
 
508
520
 
509
521
  <tr class="marked">
510
- <td><pre><a name="line76">76</a> format.html # new.html.erb</pre></td>
522
+ <td><pre><a name="line78">78</a> format.html # new.html.erb</pre></td>
511
523
  </tr>
512
524
 
513
525
 
514
526
 
515
527
  <tr class="marked">
516
- <td><pre><a name="line77">77</a> format.xml { render :xml =&gt; @story }</pre></td>
528
+ <td><pre><a name="line79">79</a> format.xml { render :xml =&gt; @story }</pre></td>
517
529
  </tr>
518
530
 
519
531
 
520
532
 
521
533
  <tr class="inferred">
522
- <td><pre><a name="line78">78</a> end</pre></td>
534
+ <td><pre><a name="line80">80</a> end</pre></td>
523
535
  </tr>
524
536
 
525
537
 
526
538
 
527
539
  <tr class="inferred">
528
- <td><pre><a name="line79">79</a> end</pre></td>
540
+ <td><pre><a name="line81">81</a> end</pre></td>
529
541
  </tr>
530
542
 
531
543
 
532
544
 
533
545
  <tr class="inferred">
534
- <td><pre><a name="line80">80</a> </pre></td>
546
+ <td><pre><a name="line82">82</a> </pre></td>
535
547
  </tr>
536
548
 
537
549
 
538
550
 
539
551
  <tr class="inferred">
540
- <td><pre><a name="line81">81</a> # GET /stories/1/edit</pre></td>
552
+ <td><pre><a name="line83">83</a> # GET /stories/1/edit</pre></td>
541
553
  </tr>
542
554
 
543
555
 
544
556
 
545
557
  <tr class="marked">
546
- <td><pre><a name="line82">82</a> def edit</pre></td>
558
+ <td><pre><a name="line84">84</a> def edit</pre></td>
547
559
  </tr>
548
560
 
549
561
 
550
562
 
551
563
  <tr class="marked">
552
- <td><pre><a name="line83">83</a> @story = Story.find_by_slug(params[:id])</pre></td>
564
+ <td><pre><a name="line85">85</a> @story = Story.find_by_slug(params[:id])</pre></td>
553
565
  </tr>
554
566
 
555
567
 
556
568
 
557
569
  <tr class="inferred">
558
- <td><pre><a name="line84">84</a> end</pre></td>
570
+ <td><pre><a name="line86">86</a> end</pre></td>
559
571
  </tr>
560
572
 
561
573
 
562
574
 
563
575
  <tr class="inferred">
564
- <td><pre><a name="line85">85</a> </pre></td>
576
+ <td><pre><a name="line87">87</a> </pre></td>
565
577
  </tr>
566
578
 
567
579
 
568
580
 
569
581
  <tr class="inferred">
570
- <td><pre><a name="line86">86</a> # POST /stories</pre></td>
582
+ <td><pre><a name="line88">88</a> # POST /stories</pre></td>
571
583
  </tr>
572
584
 
573
585
 
574
586
 
575
587
  <tr class="inferred">
576
- <td><pre><a name="line87">87</a> # POST /stories.xml</pre></td>
588
+ <td><pre><a name="line89">89</a> # POST /stories.xml</pre></td>
577
589
  </tr>
578
590
 
579
591
 
580
592
 
581
593
  <tr class="marked">
582
- <td><pre><a name="line88">88</a> def create</pre></td>
594
+ <td><pre><a name="line90">90</a> def create</pre></td>
583
595
  </tr>
584
596
 
585
597
 
586
598
 
587
599
  <tr class="marked">
588
- <td><pre><a name="line89">89</a> @story = Story.new(params[:story])</pre></td>
600
+ <td><pre><a name="line91">91</a> @story = Story.new(params[:story])</pre></td>
589
601
  </tr>
590
602
 
591
603
 
592
604
 
593
605
  <tr class="marked">
594
- <td><pre><a name="line90">90</a> @story.author = current_user</pre></td>
606
+ <td><pre><a name="line92">92</a> @story.author = current_user</pre></td>
595
607
  </tr>
596
608
 
597
609
 
598
610
 
599
611
  <tr class="marked">
600
- <td><pre><a name="line91">91</a> @story.iteration = @iteration</pre></td>
612
+ <td><pre><a name="line93">93</a> @story.iteration = @iteration</pre></td>
601
613
  </tr>
602
614
 
603
615
 
604
616
 
605
617
  <tr class="inferred">
606
- <td><pre><a name="line92">92</a> </pre></td>
618
+ <td><pre><a name="line94">94</a> </pre></td>
607
619
  </tr>
608
620
 
609
621
 
610
622
 
611
623
  <tr class="marked">
612
- <td><pre><a name="line93">93</a> respond_to do |format|</pre></td>
624
+ <td><pre><a name="line95">95</a> respond_to do |format|</pre></td>
613
625
  </tr>
614
626
 
615
627
 
616
628
 
617
629
  <tr class="marked">
618
- <td><pre><a name="line94">94</a> if @story.save</pre></td>
630
+ <td><pre><a name="line96">96</a> if @story.save</pre></td>
619
631
  </tr>
620
632
 
621
633
 
622
634
 
623
635
  <tr class="marked">
624
- <td><pre><a name="line95">95</a> flash[:notice] = 'Story was successfully created.'</pre></td>
636
+ <td><pre><a name="line97">97</a> flash[:notice] = 'Story was successfully created.'</pre></td>
625
637
  </tr>
626
638
 
627
639
 
628
640
 
629
641
  <tr class="marked">
630
- <td><pre><a name="line96">96</a> format.html { redirect_to iteration_stories_url(@iteration) }</pre></td>
642
+ <td><pre><a name="line98">98</a> format.html { redirect_to iteration_stories_path(@iteration) }</pre></td>
631
643
  </tr>
632
644
 
633
645
 
634
646
 
635
647
  <tr class="marked">
636
- <td><pre><a name="line97">97</a> format.xml { render :xml =&gt; @story, :status =&gt; :created, :location =&gt; @story }</pre></td>
648
+ <td><pre><a name="line99">99</a> format.xml { render :xml =&gt; @story, :status =&gt; :created, :location =&gt; @story }</pre></td>
637
649
  </tr>
638
650
 
639
651
 
640
652
 
641
653
  <tr class="inferred">
642
- <td><pre><a name="line98">98</a> else</pre></td>
654
+ <td><pre><a name="line100">100</a> else</pre></td>
643
655
  </tr>
644
656
 
645
657
 
646
658
 
647
659
  <tr class="marked">
648
- <td><pre><a name="line99">99</a> format.html { render :action =&gt; &quot;new&quot; }</pre></td>
660
+ <td><pre><a name="line101">101</a> format.html { render :action =&gt; &quot;new&quot; }</pre></td>
649
661
  </tr>
650
662
 
651
663
 
652
664
 
653
665
  <tr class="marked">
654
- <td><pre><a name="line100">100</a> format.xml { render :xml =&gt; @story.errors, :status =&gt; :unprocessable_entity }</pre></td>
666
+ <td><pre><a name="line102">102</a> format.xml { render :xml =&gt; @story.errors, :status =&gt; :unprocessable_entity }</pre></td>
655
667
  </tr>
656
668
 
657
669
 
658
670
 
659
671
  <tr class="inferred">
660
- <td><pre><a name="line101">101</a> end</pre></td>
672
+ <td><pre><a name="line103">103</a> end</pre></td>
661
673
  </tr>
662
674
 
663
675
 
664
676
 
665
677
  <tr class="inferred">
666
- <td><pre><a name="line102">102</a> end</pre></td>
678
+ <td><pre><a name="line104">104</a> end</pre></td>
667
679
  </tr>
668
680
 
669
681
 
670
682
 
671
683
  <tr class="inferred">
672
- <td><pre><a name="line103">103</a> end</pre></td>
684
+ <td><pre><a name="line105">105</a> end</pre></td>
673
685
  </tr>
674
686
 
675
687
 
676
688
 
677
689
  <tr class="inferred">
678
- <td><pre><a name="line104">104</a> </pre></td>
690
+ <td><pre><a name="line106">106</a> </pre></td>
679
691
  </tr>
680
692
 
681
693
 
682
694
 
683
695
  <tr class="inferred">
684
- <td><pre><a name="line105">105</a> # PUT /stories/1</pre></td>
696
+ <td><pre><a name="line107">107</a> # PUT /stories/&quot;1</pre></td>
685
697
  </tr>
686
698
 
687
699
 
688
700
 
689
701
  <tr class="inferred">
690
- <td><pre><a name="line106">106</a> # PUT /stories/1.xml</pre></td>
702
+ <td><pre><a name="line108">108</a> # PUT /stories/1.xml</pre></td>
691
703
  </tr>
692
704
 
693
705
 
694
706
 
695
707
  <tr class="marked">
696
- <td><pre><a name="line107">107</a> def update</pre></td>
708
+ <td><pre><a name="line109">109</a> def update</pre></td>
697
709
  </tr>
698
710
 
699
711
 
700
712
 
701
713
  <tr class="marked">
702
- <td><pre><a name="line108">108</a> @story = Story.find_by_slug(params[:id])</pre></td>
714
+ <td><pre><a name="line110">110</a> @story = Story.find_by_slug(params[:id])</pre></td>
715
+ </tr>
716
+
717
+
718
+
719
+ <tr class="inferred">
720
+ <td><pre><a name="line111">111</a> </pre></td>
703
721
  </tr>
704
722
 
705
723
 
706
724
 
707
725
  <tr class="marked">
708
- <td><pre><a name="line109">109</a> respond_to do |format|</pre></td>
726
+ <td><pre><a name="line112">112</a> if params[:story] and params[:story][:status]</pre></td>
727
+ </tr>
728
+
729
+
730
+
731
+ <tr class="uncovered">
732
+ <td><pre><a name="line113">113</a> if params[:story][:status] == 'in_progress'</pre></td>
733
+ </tr>
734
+
735
+
736
+
737
+ <tr class="uncovered">
738
+ <td><pre><a name="line114">114</a> @story.assign</pre></td>
739
+ </tr>
740
+
741
+
742
+
743
+ <tr class="uncovered">
744
+ <td><pre><a name="line115">115</a> end</pre></td>
745
+ </tr>
746
+
747
+
748
+
749
+ <tr class="uncovered">
750
+ <td><pre><a name="line116">116</a> </pre></td>
751
+ </tr>
752
+
753
+
754
+
755
+ <tr class="uncovered">
756
+ <td><pre><a name="line117">117</a> if params[:story][:status] == 'quality_assurance'</pre></td>
757
+ </tr>
758
+
759
+
760
+
761
+ <tr class="uncovered">
762
+ <td><pre><a name="line118">118</a> @story.check_quality</pre></td>
763
+ </tr>
764
+
765
+
766
+
767
+ <tr class="uncovered">
768
+ <td><pre><a name="line119">119</a> end</pre></td>
769
+ </tr>
770
+
771
+
772
+
773
+ <tr class="uncovered">
774
+ <td><pre><a name="line120">120</a> </pre></td>
775
+ </tr>
776
+
777
+
778
+
779
+ <tr class="uncovered">
780
+ <td><pre><a name="line121">121</a> if params[:story][:status] == 'new'</pre></td>
781
+ </tr>
782
+
783
+
784
+
785
+ <tr class="uncovered">
786
+ <td><pre><a name="line122">122</a> @story.back_to_new</pre></td>
787
+ </tr>
788
+
789
+
790
+
791
+ <tr class="uncovered">
792
+ <td><pre><a name="line123">123</a> end</pre></td>
793
+ </tr>
794
+
795
+
796
+
797
+ <tr class="uncovered">
798
+ <td><pre><a name="line124">124</a> </pre></td>
799
+ </tr>
800
+
801
+
802
+
803
+ <tr class="uncovered">
804
+ <td><pre><a name="line125">125</a> if params[:story][:status] == 'completed'</pre></td>
805
+ </tr>
806
+
807
+
808
+
809
+ <tr class="uncovered">
810
+ <td><pre><a name="line126">126</a> @story.finish</pre></td>
811
+ </tr>
812
+
813
+
814
+
815
+ <tr class="uncovered">
816
+ <td><pre><a name="line127">127</a> end</pre></td>
817
+ </tr>
818
+
819
+
820
+
821
+ <tr class="uncovered">
822
+ <td><pre><a name="line128">128</a> end</pre></td>
823
+ </tr>
824
+
825
+
826
+
827
+ <tr class="inferred">
828
+ <td><pre><a name="line129">129</a> </pre></td>
829
+ </tr>
830
+
831
+
832
+
833
+ <tr class="marked">
834
+ <td><pre><a name="line130">130</a> respond_to do |format|</pre></td>
709
835
  </tr>
710
836
 
711
837
 
712
838
 
713
839
  <tr class="marked">
714
- <td><pre><a name="line110">110</a> if @story.update_attributes(params[:story])</pre></td>
840
+ <td><pre><a name="line131">131</a> if @story.update_attributes(params[:story])</pre></td>
715
841
  </tr>
716
842
 
717
843
 
718
844
 
719
845
  <tr class="marked">
720
- <td><pre><a name="line111">111</a> flash[:notice] = 'Story was successfully updated.'</pre></td>
846
+ <td><pre><a name="line132">132</a> flash[:notice] = 'Story was successfully updated.'</pre></td>
721
847
  </tr>
722
848
 
723
849
 
724
850
 
725
851
  <tr class="marked">
726
- <td><pre><a name="line112">112</a> format.html { redirect_to iteration_story_path(@iteration, @story) }</pre></td>
852
+ <td><pre><a name="line133">133</a> format.html { redirect_to iteration_story_path(@iteration, @story) }</pre></td>
727
853
  </tr>
728
854
 
729
855
 
730
856
 
731
857
  <tr class="marked">
732
- <td><pre><a name="line113">113</a> format.xml { head :ok }</pre></td>
858
+ <td><pre><a name="line134">134</a> format.xml { head :ok }</pre></td>
733
859
  </tr>
734
860
 
735
861
 
736
862
 
737
863
  <tr class="marked">
738
- <td><pre><a name="line114">114</a> format.js { redirect_to iteration_stories_path(@iteration) }</pre></td>
864
+ <td><pre><a name="line135">135</a> format.js { redirect_to iteration_stories_path(@iteration) }</pre></td>
739
865
  </tr>
740
866
 
741
867
 
742
868
 
743
869
  <tr class="inferred">
744
- <td><pre><a name="line115">115</a> else</pre></td>
870
+ <td><pre><a name="line136">136</a> else</pre></td>
745
871
  </tr>
746
872
 
747
873
 
748
874
 
749
875
  <tr class="marked">
750
- <td><pre><a name="line116">116</a> format.html { render :action =&gt; &quot;edit&quot; }</pre></td>
876
+ <td><pre><a name="line137">137</a> format.html { render :action =&gt; &quot;edit&quot; }</pre></td>
751
877
  </tr>
752
878
 
753
879
 
754
880
 
755
881
  <tr class="marked">
756
- <td><pre><a name="line117">117</a> format.xml { render :xml =&gt; @story.errors, :status =&gt; :unprocessable_entity }</pre></td>
882
+ <td><pre><a name="line138">138</a> format.xml { render :xml =&gt; @story.errors, :status =&gt; :unprocessable_entity }</pre></td>
883
+ </tr>
884
+
885
+
886
+
887
+ <tr class="inferred">
888
+ <td><pre><a name="line139">139</a> end</pre></td>
889
+ </tr>
890
+
891
+
892
+
893
+ <tr class="inferred">
894
+ <td><pre><a name="line140">140</a> end</pre></td>
757
895
  </tr>
758
896
 
759
897
 
760
898
 
761
899
  <tr class="inferred">
762
- <td><pre><a name="line118">118</a> end</pre></td>
900
+ <td><pre><a name="line141">141</a> </pre></td>
763
901
  </tr>
764
902
 
765
903
 
766
904
 
767
905
  <tr class="inferred">
768
- <td><pre><a name="line119">119</a> end</pre></td>
906
+ <td><pre><a name="line142">142</a> </pre></td>
769
907
  </tr>
770
908
 
771
909
 
772
910
 
773
911
  <tr class="inferred">
774
- <td><pre><a name="line120">120</a> end</pre></td>
912
+ <td><pre><a name="line143">143</a> end</pre></td>
775
913
  </tr>
776
914
 
777
915
 
778
916
 
779
917
  <tr class="inferred">
780
- <td><pre><a name="line121">121</a> </pre></td>
918
+ <td><pre><a name="line144">144</a> </pre></td>
781
919
  </tr>
782
920
 
783
921
 
784
922
 
785
923
  <tr class="inferred">
786
- <td><pre><a name="line122">122</a> # DELETE /stories/1</pre></td>
924
+ <td><pre><a name="line145">145</a> # DELETE /stories/1</pre></td>
787
925
  </tr>
788
926
 
789
927
 
790
928
 
791
929
  <tr class="inferred">
792
- <td><pre><a name="line123">123</a> # DELETE /stories/1.xml</pre></td>
930
+ <td><pre><a name="line146">146</a> # DELETE /stories/1.xml</pre></td>
793
931
  </tr>
794
932
 
795
933
 
796
934
 
797
935
  <tr class="marked">
798
- <td><pre><a name="line124">124</a> def destroy</pre></td>
936
+ <td><pre><a name="line147">147</a> def destroy</pre></td>
799
937
  </tr>
800
938
 
801
939
 
802
940
 
803
941
  <tr class="marked">
804
- <td><pre><a name="line125">125</a> @story = Story.find_by_slug(params[:id])</pre></td>
942
+ <td><pre><a name="line148">148</a> @story = Story.find_by_slug(params[:id])</pre></td>
805
943
  </tr>
806
944
 
807
945
 
808
946
 
809
947
  <tr class="marked">
810
- <td><pre><a name="line126">126</a> @story.destroy</pre></td>
948
+ <td><pre><a name="line149">149</a> @story.destroy</pre></td>
811
949
  </tr>
812
950
 
813
951
 
814
952
 
815
953
  <tr class="inferred">
816
- <td><pre><a name="line127">127</a> </pre></td>
954
+ <td><pre><a name="line150">150</a> </pre></td>
817
955
  </tr>
818
956
 
819
957
 
820
958
 
821
959
  <tr class="marked">
822
- <td><pre><a name="line128">128</a> respond_to do |format|</pre></td>
960
+ <td><pre><a name="line151">151</a> respond_to do |format|</pre></td>
823
961
  </tr>
824
962
 
825
963
 
826
964
 
827
965
  <tr class="marked">
828
- <td><pre><a name="line129">129</a> format.html { redirect_to iteration_stories_path(@iteration) }</pre></td>
966
+ <td><pre><a name="line152">152</a> format.html { redirect_to iteration_stories_path(@iteration) }</pre></td>
829
967
  </tr>
830
968
 
831
969
 
832
970
 
833
971
  <tr class="marked">
834
- <td><pre><a name="line130">130</a> format.xml { head :ok }</pre></td>
972
+ <td><pre><a name="line153">153</a> format.xml { head :ok }</pre></td>
835
973
  </tr>
836
974
 
837
975
 
838
976
 
839
977
  <tr class="inferred">
840
- <td><pre><a name="line131">131</a> end</pre></td>
978
+ <td><pre><a name="line154">154</a> end</pre></td>
841
979
  </tr>
842
980
 
843
981
 
844
982
 
845
983
  <tr class="inferred">
846
- <td><pre><a name="line132">132</a> end</pre></td>
984
+ <td><pre><a name="line155">155</a> end</pre></td>
847
985
  </tr>
848
986
 
849
987
 
850
988
 
851
989
  <tr class="inferred">
852
- <td><pre><a name="line133">133</a> </pre></td>
990
+ <td><pre><a name="line156">156</a> </pre></td>
853
991
  </tr>
854
992
 
855
993
 
856
994
 
857
995
  <tr class="inferred">
858
- <td><pre><a name="line134">134</a> </pre></td>
996
+ <td><pre><a name="line157">157</a> </pre></td>
859
997
  </tr>
860
998
 
861
999
 
862
1000
 
863
1001
  <tr class="marked">
864
- <td><pre><a name="line135">135</a> private</pre></td>
1002
+ <td><pre><a name="line158">158</a> private</pre></td>
865
1003
  </tr>
866
1004
 
867
1005
 
868
1006
 
869
1007
  <tr class="inferred">
870
- <td><pre><a name="line136">136</a> </pre></td>
1008
+ <td><pre><a name="line159">159</a> </pre></td>
871
1009
  </tr>
872
1010
 
873
1011
 
874
1012
 
875
1013
  <tr class="marked">
876
- <td><pre><a name="line137">137</a> def retrieve_iterations</pre></td>
1014
+ <td><pre><a name="line160">160</a> def retrieve_iterations</pre></td>
877
1015
  </tr>
878
1016
 
879
1017
 
880
1018
 
881
1019
  <tr class="marked">
882
- <td><pre><a name="line138">138</a> @iterations = Iteration.all</pre></td>
1020
+ <td><pre><a name="line161">161</a> @iterations = Iteration.all</pre></td>
883
1021
  </tr>
884
1022
 
885
1023
 
886
1024
 
887
1025
  <tr class="inferred">
888
- <td><pre><a name="line139">139</a> end</pre></td>
1026
+ <td><pre><a name="line162">162</a> end</pre></td>
889
1027
  </tr>
890
1028
 
891
1029
 
892
1030
 
893
1031
  <tr class="inferred">
894
- <td><pre><a name="line140">140</a> </pre></td>
1032
+ <td><pre><a name="line163">163</a> </pre></td>
895
1033
  </tr>
896
1034
 
897
1035
 
898
1036
 
899
1037
  <tr class="marked">
900
- <td><pre><a name="line141">141</a> def load_iteration</pre></td>
1038
+ <td><pre><a name="line164">164</a> def load_iteration</pre></td>
901
1039
  </tr>
902
1040
 
903
1041
 
904
1042
 
905
1043
  <tr class="marked">
906
- <td><pre><a name="line142">142</a> @iteration = Iteration.find(params[:iteration_id])</pre></td>
1044
+ <td><pre><a name="line165">165</a> @iteration = Iteration.find(params[:iteration_id])</pre></td>
907
1045
  </tr>
908
1046
 
909
1047
 
910
1048
 
911
1049
  <tr class="inferred">
912
- <td><pre><a name="line143">143</a> end</pre></td>
1050
+ <td><pre><a name="line166">166</a> end</pre></td>
913
1051
  </tr>
914
1052
 
915
1053
 
916
1054
 
917
1055
  <tr class="inferred">
918
- <td><pre><a name="line144">144</a> end</pre></td>
1056
+ <td><pre><a name="line167">167</a> end</pre></td>
919
1057
  </tr>
920
1058
 
921
1059
 
922
1060
 
923
1061
  <tr class="inferred">
924
- <td><pre><a name="line145">145</a> </pre></td>
1062
+ <td><pre><a name="line168">168</a> </pre></td>
925
1063
  </tr>
926
1064
 
927
1065
  </tbody>
928
1066
  </table>
929
1067
 
930
- <p>Generated on Thu Jan 07 15:27:03 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.6</a></p>
1068
+ <p>Generated on Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
931
1069
 
932
1070
  </body>
933
1071
  </html>