branston 0.5.1 → 0.5.2

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 (41) hide show
  1. data/lib/branston/app/controllers/stories_controller.rb +9 -9
  2. data/lib/branston/coverage/app-controllers-application_controller_rb.html +1 -1
  3. data/lib/branston/coverage/app-controllers-iterations_controller_rb.html +1 -1
  4. data/lib/branston/coverage/app-controllers-outcomes_controller_rb.html +1 -1
  5. data/lib/branston/coverage/app-controllers-preconditions_controller_rb.html +1 -1
  6. data/lib/branston/coverage/app-controllers-releases_controller_rb.html +1 -1
  7. data/lib/branston/coverage/app-controllers-scenarios_controller_rb.html +1 -1
  8. data/lib/branston/coverage/app-controllers-sessions_controller_rb.html +1 -1
  9. data/lib/branston/coverage/app-controllers-stories_controller_rb.html +21 -21
  10. data/lib/branston/coverage/app-controllers-user_roles_controller_rb.html +1 -1
  11. data/lib/branston/coverage/app-controllers-users_controller_rb.html +1 -1
  12. data/lib/branston/coverage/app-helpers-application_helper_rb.html +1 -1
  13. data/lib/branston/coverage/app-helpers-iterations_helper_rb.html +1 -1
  14. data/lib/branston/coverage/app-helpers-outcomes_helper_rb.html +1 -1
  15. data/lib/branston/coverage/app-helpers-preconditions_helper_rb.html +1 -1
  16. data/lib/branston/coverage/app-helpers-releases_helper_rb.html +1 -1
  17. data/lib/branston/coverage/app-helpers-sessions_helper_rb.html +1 -1
  18. data/lib/branston/coverage/app-helpers-stories_helper_rb.html +1 -1
  19. data/lib/branston/coverage/app-helpers-user_roles_helper_rb.html +1 -1
  20. data/lib/branston/coverage/app-models-iteration_rb.html +1 -1
  21. data/lib/branston/coverage/app-models-outcome_rb.html +1 -1
  22. data/lib/branston/coverage/app-models-participation_rb.html +1 -1
  23. data/lib/branston/coverage/app-models-precondition_rb.html +1 -1
  24. data/lib/branston/coverage/app-models-release_rb.html +1 -1
  25. data/lib/branston/coverage/app-models-scenario_rb.html +1 -1
  26. data/lib/branston/coverage/app-models-story_rb.html +1 -1
  27. data/lib/branston/coverage/app-models-user_rb.html +1 -1
  28. data/lib/branston/coverage/app-models-user_role_rb.html +1 -1
  29. data/lib/branston/coverage/index.html +66 -66
  30. data/lib/branston/coverage/lib-client_rb.html +1 -1
  31. data/lib/branston/coverage/lib-faker_extras_rb.html +1 -1
  32. data/lib/branston/coverage/lib-story_generator_rb.html +1 -1
  33. data/lib/branston/db/development.sqlite3 +0 -0
  34. data/lib/branston/db/test.sqlite3 +0 -0
  35. data/lib/branston/log/development.log +9810 -5164
  36. data/lib/branston/log/test.log +120251 -35059
  37. data/lib/branston/tmp/performance/BrowsingTest#test_homepage_process_time_flat.txt +7 -0
  38. data/lib/branston/tmp/performance/BrowsingTest#test_homepage_process_time_graph.html +3127 -0
  39. data/lib/branston/tmp/performance/BrowsingTest#test_homepage_process_time_tree.txt +9874 -0
  40. metadata +5 -3
  41. data/lib/branston/db/production.sqlite3 +0 -0
@@ -17,7 +17,7 @@ class StoriesController < ApplicationController
17
17
  layout 'main'
18
18
  before_filter :login_required, :except => [:show, :generate_feature]
19
19
  before_filter :retrieve_iterations, :except => [:generate_feature]
20
- before_filter :load_iteration, :except => [:generate_feature]
20
+ before_filter :load_iteration, :except => [:generate_feature, :show]
21
21
  in_place_edit_for :story, :title
22
22
  in_place_edit_for :story, :description
23
23
  in_place_edit_for :story, :points
@@ -49,19 +49,19 @@ class StoriesController < ApplicationController
49
49
  # GET /stories/1.xml
50
50
  def show
51
51
  @story = Story.find_by_slug(params[:id])
52
-
52
+ @iteration = @story.iteration unless @story.nil?
53
+
53
54
  respond_to do |format|
54
55
  if @story
55
- format.html {
56
- @iteration = load_iteration
56
+ format.html
57
+ format.xml {
58
+ render :xml => (@story.to_xml :include => {
59
+ :scenarios => { :include => [:preconditions, :outcomes] }
60
+ })
57
61
  }
58
- format.xml {
59
- render :xml => (@story.to_xml :include => { :scenarios => {
60
- :include => [:preconditions, :outcomes] } } ) }
61
- format.js { @active = true }
62
+ format.js { @active = true }
62
63
  else
63
64
  format.html {
64
- @iteration = load_iteration
65
65
  render_optional_error_file 404
66
66
  }
67
67
  format.all { render :nothing => true, :status => 404 }
@@ -225,7 +225,7 @@
225
225
  </tbody>
226
226
  </table>
227
227
 
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>
228
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.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 Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
798
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.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 Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
756
+ <p>Generated on Wed Mar 10 10:25:24 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.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 Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
780
+ <p>Generated on Wed Mar 10 10:25:24 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.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 Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
702
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.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 Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
774
+ <p>Generated on Wed Mar 10 10:25:24 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.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 Tue Mar 02 18:39:15 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.7.1</a></p>
408
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
409
409
 
410
410
  </body>
411
411
  </html>
@@ -171,7 +171,7 @@
171
171
 
172
172
 
173
173
  <tr class="marked">
174
- <td><pre><a name="line20">20</a> before_filter :load_iteration, :except =&gt; [:generate_feature]</pre></td>
174
+ <td><pre><a name="line20">20</a> before_filter :load_iteration, :except =&gt; [:generate_feature, :show]</pre></td>
175
175
  </tr>
176
176
 
177
177
 
@@ -362,80 +362,80 @@
362
362
 
363
363
 
364
364
 
365
+ <tr class="marked">
366
+ <td><pre><a name="line52">52</a> @iteration = @story.iteration unless @story.nil?</pre></td>
367
+ </tr>
368
+
369
+
370
+
365
371
  <tr class="inferred">
366
- <td><pre><a name="line52">52</a> </pre></td>
372
+ <td><pre><a name="line53">53</a> </pre></td>
367
373
  </tr>
368
374
 
369
375
 
370
376
 
371
377
  <tr class="marked">
372
- <td><pre><a name="line53">53</a> respond_to do |format|</pre></td>
378
+ <td><pre><a name="line54">54</a> respond_to do |format|</pre></td>
373
379
  </tr>
374
380
 
375
381
 
376
382
 
377
383
  <tr class="marked">
378
- <td><pre><a name="line54">54</a> if @story</pre></td>
384
+ <td><pre><a name="line55">55</a> if @story</pre></td>
379
385
  </tr>
380
386
 
381
387
 
382
388
 
383
389
  <tr class="marked">
384
- <td><pre><a name="line55">55</a> format.html {</pre></td>
390
+ <td><pre><a name="line56">56</a> format.html</pre></td>
385
391
  </tr>
386
392
 
387
393
 
388
394
 
389
395
  <tr class="marked">
390
- <td><pre><a name="line56">56</a> @iteration = load_iteration</pre></td>
396
+ <td><pre><a name="line57">57</a> format.xml {</pre></td>
391
397
  </tr>
392
398
 
393
399
 
394
400
 
395
401
  <tr class="inferred">
396
- <td><pre><a name="line57">57</a> }</pre></td>
402
+ <td><pre><a name="line58">58</a> render :xml =&gt; (@story.to_xml :include =&gt; { </pre></td>
397
403
  </tr>
398
404
 
399
405
 
400
406
 
401
- <tr class="marked">
402
- <td><pre><a name="line58">58</a> format.xml {</pre></td>
407
+ <tr class="inferred">
408
+ <td><pre><a name="line59">59</a> :scenarios =&gt; { :include =&gt; [:preconditions, :outcomes] }</pre></td>
403
409
  </tr>
404
410
 
405
411
 
406
412
 
407
413
  <tr class="inferred">
408
- <td><pre><a name="line59">59</a> render :xml =&gt; (@story.to_xml :include =&gt; { :scenarios =&gt; {</pre></td>
414
+ <td><pre><a name="line60">60</a> })</pre></td>
409
415
  </tr>
410
416
 
411
417
 
412
418
 
413
419
  <tr class="inferred">
414
- <td><pre><a name="line60">60</a> :include =&gt; [:preconditions, :outcomes] } } ) }</pre></td>
420
+ <td><pre><a name="line61">61</a> }</pre></td>
415
421
  </tr>
416
422
 
417
423
 
418
424
 
419
425
  <tr class="marked">
420
- <td><pre><a name="line61">61</a> format.js { @active = true }</pre></td>
426
+ <td><pre><a name="line62">62</a> format.js { @active = true }</pre></td>
421
427
  </tr>
422
428
 
423
429
 
424
430
 
425
431
  <tr class="inferred">
426
- <td><pre><a name="line62">62</a> else</pre></td>
427
- </tr>
428
-
429
-
430
-
431
- <tr class="marked">
432
- <td><pre><a name="line63">63</a> format.html {</pre></td>
432
+ <td><pre><a name="line63">63</a> else</pre></td>
433
433
  </tr>
434
434
 
435
435
 
436
436
 
437
437
  <tr class="marked">
438
- <td><pre><a name="line64">64</a> @iteration = load_iteration</pre></td>
438
+ <td><pre><a name="line64">64</a> format.html {</pre></td>
439
439
  </tr>
440
440
 
441
441
 
@@ -1065,7 +1065,7 @@
1065
1065
  </tbody>
1066
1066
  </table>
1067
1067
 
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>
1068
+ <p>Generated on Wed Mar 10 10:25:24 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
1069
1069
 
1070
1070
  </body>
1071
1071
  </html>
@@ -687,7 +687,7 @@
687
687
  </tbody>
688
688
  </table>
689
689
 
690
- <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>
690
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
691
691
 
692
692
  </body>
693
693
  </html>
@@ -309,7 +309,7 @@
309
309
  </tbody>
310
310
  </table>
311
311
 
312
- <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>
312
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
313
313
 
314
314
  </body>
315
315
  </html>
@@ -321,7 +321,7 @@
321
321
  </tbody>
322
322
  </table>
323
323
 
324
- <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>
324
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
325
325
 
326
326
  </body>
327
327
  </html>
@@ -357,7 +357,7 @@
357
357
  </tbody>
358
358
  </table>
359
359
 
360
- <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>
360
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
361
361
 
362
362
  </body>
363
363
  </html>
@@ -69,7 +69,7 @@
69
69
  </tbody>
70
70
  </table>
71
71
 
72
- <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>
72
+ <p>Generated on Wed Mar 10 10:25:24 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
73
73
 
74
74
  </body>
75
75
  </html>
@@ -69,7 +69,7 @@
69
69
  </tbody>
70
70
  </table>
71
71
 
72
- <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>
72
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
73
73
 
74
74
  </body>
75
75
  </html>
@@ -69,7 +69,7 @@
69
69
  </tbody>
70
70
  </table>
71
71
 
72
- <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>
72
+ <p>Generated on Wed Mar 10 10:25:24 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
73
73
 
74
74
  </body>
75
75
  </html>
@@ -69,7 +69,7 @@
69
69
  </tbody>
70
70
  </table>
71
71
 
72
- <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>
72
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
73
73
 
74
74
  </body>
75
75
  </html>
@@ -69,7 +69,7 @@
69
69
  </tbody>
70
70
  </table>
71
71
 
72
- <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>
72
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
73
73
 
74
74
  </body>
75
75
  </html>
@@ -69,7 +69,7 @@
69
69
  </tbody>
70
70
  </table>
71
71
 
72
- <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>
72
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
73
73
 
74
74
  </body>
75
75
  </html>
@@ -315,7 +315,7 @@
315
315
  </tbody>
316
316
  </table>
317
317
 
318
- <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>
318
+ <p>Generated on Wed Mar 10 10:25:24 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
319
319
 
320
320
  </body>
321
321
  </html>
@@ -237,7 +237,7 @@
237
237
  </tbody>
238
238
  </table>
239
239
 
240
- <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>
240
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
241
241
 
242
242
  </body>
243
243
  </html>
@@ -183,7 +183,7 @@
183
183
  </tbody>
184
184
  </table>
185
185
 
186
- <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>
186
+ <p>Generated on Wed Mar 10 10:25:24 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
187
187
 
188
188
  </body>
189
189
  </html>
@@ -237,7 +237,7 @@
237
237
  </tbody>
238
238
  </table>
239
239
 
240
- <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>
240
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
241
241
 
242
242
  </body>
243
243
  </html>
@@ -189,7 +189,7 @@
189
189
  </tbody>
190
190
  </table>
191
191
 
192
- <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>
192
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
193
193
 
194
194
  </body>
195
195
  </html>
@@ -225,7 +225,7 @@
225
225
  </tbody>
226
226
  </table>
227
227
 
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>
228
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
229
229
 
230
230
  </body>
231
231
  </html>
@@ -615,7 +615,7 @@
615
615
  </tbody>
616
616
  </table>
617
617
 
618
- <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>
618
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
619
619
 
620
620
  </body>
621
621
  </html>
@@ -507,7 +507,7 @@
507
507
  </tbody>
508
508
  </table>
509
509
 
510
- <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>
510
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
511
511
 
512
512
  </body>
513
513
  </html>
@@ -183,7 +183,7 @@
183
183
  </tbody>
184
184
  </table>
185
185
 
186
- <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>
186
+ <p>Generated on Wed Mar 10 10:25:25 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
187
187
 
188
188
  </body>
189
189
  </html>
@@ -112,10 +112,10 @@
112
112
  </div></td>
113
113
  </tr>
114
114
 
115
- <tr class="all_files all_coverage 110 app models odd">
116
- <td class="left_align"><a href="app-models-story_rb.html">app/models/story.rb</a></td>
117
- <td class='right_align'><tt>93</tt></td>
118
- <td class='right_align'><tt>45</tt></td>
115
+ <tr class="all_files all_coverage 110 app controllers odd">
116
+ <td class="left_align"><a href="app-controllers-preconditions_controller_rb.html">app/controllers/preconditions_controller.rb</a></td>
117
+ <td class='right_align'><tt>120</tt></td>
118
+ <td class='right_align'><tt>76</tt></td>
119
119
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
120
120
  <div class="percent_graph">
121
121
  <div class="covered" style="width:100px"></div>
@@ -128,10 +128,10 @@
128
128
  </div></td>
129
129
  </tr>
130
130
 
131
- <tr class="all_files all_coverage 110 app controllers even">
132
- <td class="left_align"><a href="app-controllers-outcomes_controller_rb.html">app/controllers/outcomes_controller.rb</a></td>
133
- <td class='right_align'><tt>116</tt></td>
134
- <td class='right_align'><tt>74</tt></td>
131
+ <tr class="all_files all_coverage 110 app helpers even">
132
+ <td class="left_align"><a href="app-helpers-releases_helper_rb.html">app/helpers/releases_helper.rb</a></td>
133
+ <td class='right_align'><tt>2</tt></td>
134
+ <td class='right_align'><tt>2</tt></td>
135
135
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
136
136
  <div class="percent_graph">
137
137
  <div class="covered" style="width:100px"></div>
@@ -144,10 +144,10 @@
144
144
  </div></td>
145
145
  </tr>
146
146
 
147
- <tr class="all_files all_coverage 110 app helpers odd">
148
- <td class="left_align"><a href="app-helpers-releases_helper_rb.html">app/helpers/releases_helper.rb</a></td>
149
- <td class='right_align'><tt>2</tt></td>
150
- <td class='right_align'><tt>2</tt></td>
147
+ <tr class="all_files all_coverage 110 app controllers odd">
148
+ <td class="left_align"><a href="app-controllers-outcomes_controller_rb.html">app/controllers/outcomes_controller.rb</a></td>
149
+ <td class='right_align'><tt>116</tt></td>
150
+ <td class='right_align'><tt>74</tt></td>
151
151
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
152
152
  <div class="percent_graph">
153
153
  <div class="covered" style="width:100px"></div>
@@ -193,7 +193,7 @@
193
193
  </tr>
194
194
 
195
195
  <tr class="all_files all_coverage 110 app models even">
196
- <td class="left_align"><a href="app-models-user_role_rb.html">app/models/user_role.rb</a></td>
196
+ <td class="left_align"><a href="app-models-participation_rb.html">app/models/participation.rb</a></td>
197
197
  <td class='right_align'><tt>21</tt></td>
198
198
  <td class='right_align'><tt>4</tt></td>
199
199
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
@@ -208,10 +208,10 @@
208
208
  </div></td>
209
209
  </tr>
210
210
 
211
- <tr class="all_files all_coverage 110 app helpers odd">
212
- <td class="left_align"><a href="app-helpers-application_helper_rb.html">app/helpers/application_helper.rb</a></td>
213
- <td class='right_align'><tt>44</tt></td>
214
- <td class='right_align'><tt>34</tt></td>
211
+ <tr class="all_files all_coverage 110 app models odd">
212
+ <td class="left_align"><a href="app-models-user_role_rb.html">app/models/user_role.rb</a></td>
213
+ <td class='right_align'><tt>21</tt></td>
214
+ <td class='right_align'><tt>4</tt></td>
215
215
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
216
216
  <div class="percent_graph">
217
217
  <div class="covered" style="width:100px"></div>
@@ -225,9 +225,9 @@
225
225
  </tr>
226
226
 
227
227
  <tr class="all_files all_coverage 110 app models even">
228
- <td class="left_align"><a href="app-models-release_rb.html">app/models/release.rb</a></td>
229
- <td class='right_align'><tt>22</tt></td>
230
- <td class='right_align'><tt>4</tt></td>
228
+ <td class="left_align"><a href="app-models-scenario_rb.html">app/models/scenario.rb</a></td>
229
+ <td class='right_align'><tt>28</tt></td>
230
+ <td class='right_align'><tt>6</tt></td>
231
231
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
232
232
  <div class="percent_graph">
233
233
  <div class="covered" style="width:100px"></div>
@@ -257,9 +257,9 @@
257
257
  </tr>
258
258
 
259
259
  <tr class="all_files all_coverage 110 app models even">
260
- <td class="left_align"><a href="app-models-scenario_rb.html">app/models/scenario.rb</a></td>
261
- <td class='right_align'><tt>28</tt></td>
262
- <td class='right_align'><tt>6</tt></td>
260
+ <td class="left_align"><a href="app-models-release_rb.html">app/models/release.rb</a></td>
261
+ <td class='right_align'><tt>22</tt></td>
262
+ <td class='right_align'><tt>4</tt></td>
263
263
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
264
264
  <div class="percent_graph">
265
265
  <div class="covered" style="width:100px"></div>
@@ -288,10 +288,10 @@
288
288
  </div></td>
289
289
  </tr>
290
290
 
291
- <tr class="all_files all_coverage 110 app controllers even">
292
- <td class="left_align"><a href="app-controllers-preconditions_controller_rb.html">app/controllers/preconditions_controller.rb</a></td>
293
- <td class='right_align'><tt>120</tt></td>
294
- <td class='right_align'><tt>76</tt></td>
291
+ <tr class="all_files all_coverage 110 lib even">
292
+ <td class="left_align"><a href="lib-faker_extras_rb.html">lib/faker_extras.rb</a></td>
293
+ <td class='right_align'><tt>24</tt></td>
294
+ <td class='right_align'><tt>23</tt></td>
295
295
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
296
296
  <div class="percent_graph">
297
297
  <div class="covered" style="width:100px"></div>
@@ -304,10 +304,10 @@
304
304
  </div></td>
305
305
  </tr>
306
306
 
307
- <tr class="all_files all_coverage 110 app controllers odd">
308
- <td class="left_align"><a href="app-controllers-iterations_controller_rb.html">app/controllers/iterations_controller.rb</a></td>
309
- <td class='right_align'><tt>123</tt></td>
310
- <td class='right_align'><tt>74</tt></td>
307
+ <tr class="all_files all_coverage 110 app helpers odd">
308
+ <td class="left_align"><a href="app-helpers-application_helper_rb.html">app/helpers/application_helper.rb</a></td>
309
+ <td class='right_align'><tt>44</tt></td>
310
+ <td class='right_align'><tt>34</tt></td>
311
311
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
312
312
  <div class="percent_graph">
313
313
  <div class="covered" style="width:100px"></div>
@@ -321,9 +321,9 @@
321
321
  </tr>
322
322
 
323
323
  <tr class="all_files all_coverage 110 app models even">
324
- <td class="left_align"><a href="app-models-user_rb.html">app/models/user.rb</a></td>
325
- <td class='right_align'><tt>75</tt></td>
326
- <td class='right_align'><tt>35</tt></td>
324
+ <td class="left_align"><a href="app-models-story_rb.html">app/models/story.rb</a></td>
325
+ <td class='right_align'><tt>93</tt></td>
326
+ <td class='right_align'><tt>45</tt></td>
327
327
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
328
328
  <div class="percent_graph">
329
329
  <div class="covered" style="width:100px"></div>
@@ -336,10 +336,10 @@
336
336
  </div></td>
337
337
  </tr>
338
338
 
339
- <tr class="all_files all_coverage 110 lib odd">
340
- <td class="left_align"><a href="lib-faker_extras_rb.html">lib/faker_extras.rb</a></td>
341
- <td class='right_align'><tt>24</tt></td>
342
- <td class='right_align'><tt>23</tt></td>
339
+ <tr class="all_files all_coverage 110 app models odd">
340
+ <td class="left_align"><a href="app-models-precondition_rb.html">app/models/precondition.rb</a></td>
341
+ <td class='right_align'><tt>30</tt></td>
342
+ <td class='right_align'><tt>7</tt></td>
343
343
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
344
344
  <div class="percent_graph">
345
345
  <div class="covered" style="width:100px"></div>
@@ -353,9 +353,9 @@
353
353
  </tr>
354
354
 
355
355
  <tr class="all_files all_coverage 110 app models even">
356
- <td class="left_align"><a href="app-models-precondition_rb.html">app/models/precondition.rb</a></td>
357
- <td class='right_align'><tt>30</tt></td>
358
- <td class='right_align'><tt>7</tt></td>
356
+ <td class="left_align"><a href="app-models-user_rb.html">app/models/user.rb</a></td>
357
+ <td class='right_align'><tt>75</tt></td>
358
+ <td class='right_align'><tt>35</tt></td>
359
359
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
360
360
  <div class="percent_graph">
361
361
  <div class="covered" style="width:100px"></div>
@@ -385,9 +385,9 @@
385
385
  </tr>
386
386
 
387
387
  <tr class="all_files all_coverage 110 app controllers even">
388
- <td class="left_align"><a href="app-controllers-application_controller_rb.html">app/controllers/application_controller.rb</a></td>
389
- <td class='right_align'><tt>28</tt></td>
390
- <td class='right_align'><tt>5</tt></td>
388
+ <td class="left_align"><a href="app-controllers-sessions_controller_rb.html">app/controllers/sessions_controller.rb</a></td>
389
+ <td class='right_align'><tt>58</tt></td>
390
+ <td class='right_align'><tt>31</tt></td>
391
391
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
392
392
  <div class="percent_graph">
393
393
  <div class="covered" style="width:100px"></div>
@@ -417,9 +417,9 @@
417
417
  </tr>
418
418
 
419
419
  <tr class="all_files all_coverage 110 app controllers even">
420
- <td class="left_align"><a href="app-controllers-sessions_controller_rb.html">app/controllers/sessions_controller.rb</a></td>
421
- <td class='right_align'><tt>58</tt></td>
422
- <td class='right_align'><tt>31</tt></td>
420
+ <td class="left_align"><a href="app-controllers-application_controller_rb.html">app/controllers/application_controller.rb</a></td>
421
+ <td class='right_align'><tt>28</tt></td>
422
+ <td class='right_align'><tt>5</tt></td>
423
423
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
424
424
  <div class="percent_graph">
425
425
  <div class="covered" style="width:100px"></div>
@@ -432,10 +432,10 @@
432
432
  </div></td>
433
433
  </tr>
434
434
 
435
- <tr class="all_files all_coverage 110 app helpers odd">
436
- <td class="left_align"><a href="app-helpers-user_roles_helper_rb.html">app/helpers/user_roles_helper.rb</a></td>
437
- <td class='right_align'><tt>2</tt></td>
438
- <td class='right_align'><tt>2</tt></td>
435
+ <tr class="all_files all_coverage 110 app controllers odd">
436
+ <td class="left_align"><a href="app-controllers-users_controller_rb.html">app/controllers/users_controller.rb</a></td>
437
+ <td class='right_align'><tt>42</tt></td>
438
+ <td class='right_align'><tt>19</tt></td>
439
439
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
440
440
  <div class="percent_graph">
441
441
  <div class="covered" style="width:100px"></div>
@@ -448,10 +448,10 @@
448
448
  </div></td>
449
449
  </tr>
450
450
 
451
- <tr class="all_files all_coverage 110 app controllers even">
452
- <td class="left_align"><a href="app-controllers-users_controller_rb.html">app/controllers/users_controller.rb</a></td>
453
- <td class='right_align'><tt>42</tt></td>
454
- <td class='right_align'><tt>19</tt></td>
451
+ <tr class="all_files all_coverage 110 app helpers even">
452
+ <td class="left_align"><a href="app-helpers-user_roles_helper_rb.html">app/helpers/user_roles_helper.rb</a></td>
453
+ <td class='right_align'><tt>2</tt></td>
454
+ <td class='right_align'><tt>2</tt></td>
455
455
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
456
456
  <div class="percent_graph">
457
457
  <div class="covered" style="width:100px"></div>
@@ -480,10 +480,10 @@
480
480
  </div></td>
481
481
  </tr>
482
482
 
483
- <tr class="all_files all_coverage 110 app models even">
484
- <td class="left_align"><a href="app-models-participation_rb.html">app/models/participation.rb</a></td>
485
- <td class='right_align'><tt>21</tt></td>
486
- <td class='right_align'><tt>4</tt></td>
483
+ <tr class="all_files all_coverage 110 app controllers even">
484
+ <td class="left_align"><a href="app-controllers-iterations_controller_rb.html">app/controllers/iterations_controller.rb</a></td>
485
+ <td class='right_align'><tt>123</tt></td>
486
+ <td class='right_align'><tt>74</tt></td>
487
487
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
488
488
  <div class="percent_graph">
489
489
  <div class="covered" style="width:100px"></div>
@@ -513,9 +513,9 @@
513
513
  </tr>
514
514
 
515
515
  <tr class="all_files all_coverage 110 app helpers even">
516
- <td class="left_align"><a href="app-helpers-iterations_helper_rb.html">app/helpers/iterations_helper.rb</a></td>
517
- <td class='right_align'><tt>50</tt></td>
518
- <td class='right_align'><tt>32</tt></td>
516
+ <td class="left_align"><a href="app-helpers-preconditions_helper_rb.html">app/helpers/preconditions_helper.rb</a></td>
517
+ <td class='right_align'><tt>2</tt></td>
518
+ <td class='right_align'><tt>2</tt></td>
519
519
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
520
520
  <div class="percent_graph">
521
521
  <div class="covered" style="width:100px"></div>
@@ -529,9 +529,9 @@
529
529
  </tr>
530
530
 
531
531
  <tr class="all_files all_coverage 110 app helpers odd">
532
- <td class="left_align"><a href="app-helpers-preconditions_helper_rb.html">app/helpers/preconditions_helper.rb</a></td>
533
- <td class='right_align'><tt>2</tt></td>
534
- <td class='right_align'><tt>2</tt></td>
532
+ <td class="left_align"><a href="app-helpers-iterations_helper_rb.html">app/helpers/iterations_helper.rb</a></td>
533
+ <td class='right_align'><tt>50</tt></td>
534
+ <td class='right_align'><tt>32</tt></td>
535
535
  <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
536
536
  <div class="percent_graph">
537
537
  <div class="covered" style="width:100px"></div>
@@ -548,7 +548,7 @@
548
548
  </table>
549
549
  </div>
550
550
 
551
- <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>
551
+ <p>Generated on Wed Mar 10 10:25:24 +0000 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.2.1</a></p>
552
552
 
553
553
  <script type="text/javascript">
554
554
  $(document).ready(function(){$("#report_table").tablesorter({widgets: ['zebra'], textExtraction: 'complex'});});