teabag 0.4.4 → 0.4.5

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/app/assets/javascripts/teabag/base/reporters/html/failure_view.coffee +1 -1
  2. data/app/assets/javascripts/teabag/base/reporters/html/spec_view.coffee +1 -1
  3. data/app/assets/javascripts/teabag/base/reporters/html.coffee +31 -29
  4. data/app/assets/javascripts/teabag/base/teabag.coffee +2 -0
  5. data/app/assets/javascripts/teabag-jasmine.js +6 -3
  6. data/app/assets/javascripts/teabag-mocha.js +6 -3
  7. data/app/assets/javascripts/teabag-qunit.js +6 -3
  8. data/app/assets/stylesheets/teabag.css +21 -13
  9. data/app/views/teabag/spec/index.html.erb +3 -2
  10. data/lib/teabag/console.rb +1 -1
  11. data/lib/teabag/version.rb +1 -1
  12. data/spec/dummy/log/development.log +723 -0
  13. data/spec/dummy/log/test.log +10 -0
  14. data/spec/dummy/tmp/cache/assets/C59/250/sprockets%2Fa80d3fe493d2476e58c4323996064512 +0 -0
  15. data/spec/dummy/tmp/cache/assets/C72/150/sprockets%2F4194031b4b51b6422c14ac697e3455e5 +0 -0
  16. data/spec/dummy/tmp/cache/assets/C91/FA0/sprockets%2F2eb81283f5789ae91a69344552db3856 +0 -0
  17. data/spec/dummy/tmp/cache/assets/CA6/DF0/sprockets%2F7da83747ce56e49393b6b8726587f846 +0 -0
  18. data/spec/dummy/tmp/cache/assets/CC2/EC0/sprockets%2F76bf80cb571ca530357f78db78167866 +0 -0
  19. data/spec/dummy/tmp/cache/assets/CD9/DD0/sprockets%2Fe5774759168a731da1c1149ecf0e1b03 +0 -0
  20. data/spec/dummy/tmp/cache/assets/CE3/1F0/sprockets%2Fe69a515d3a9d14c669be8871012a7d07 +0 -0
  21. data/spec/dummy/tmp/cache/assets/CE9/9E0/sprockets%2F135480d497ed7e4884462dc0ef0b80d7 +0 -0
  22. data/spec/dummy/tmp/cache/assets/D00/110/sprockets%2F6a6353b7723a8b21708e0fbfe04bd422 +0 -0
  23. data/spec/dummy/tmp/cache/assets/D00/F60/sprockets%2F42e279b52511c47d26c0adb125fd04e8 +0 -0
  24. data/spec/dummy/tmp/cache/assets/D15/750/sprockets%2F8effdd3e668a4036260a3e370f3b6657 +0 -0
  25. data/spec/dummy/tmp/cache/assets/D17/710/sprockets%2Ffa49fb6823d466e79a195e0cd71340c5 +0 -0
  26. data/spec/dummy/tmp/cache/assets/D1A/D30/sprockets%2F815a5177e9edba0c5c996182ef1b3675 +0 -0
  27. data/spec/dummy/tmp/cache/assets/D1E/AA0/sprockets%2F5c8741a556bc955cd36e61c88582b6dc +0 -0
  28. data/spec/dummy/tmp/cache/assets/D37/FF0/sprockets%2F96841ca4cfae32c515077f3f5fc303b2 +0 -0
  29. data/spec/dummy/tmp/cache/assets/D45/C30/sprockets%2Fcc744877558178a3adb77c441cadce70 +0 -0
  30. data/spec/dummy/tmp/cache/assets/D49/A10/sprockets%2Fc4656bd995a6f297c26d19b13aadb963 +0 -0
  31. data/spec/dummy/tmp/cache/assets/D50/D70/sprockets%2Fe2a3e6c95b11e0801a4eebae3a026026 +0 -0
  32. data/spec/dummy/tmp/cache/assets/D5C/CC0/sprockets%2Faa8bf6de211f2765b0a26f112b971f0c +0 -0
  33. data/spec/dummy/tmp/cache/assets/D7E/C10/sprockets%2F747c98c3cc7494a62dd882752adffb2b +0 -0
  34. data/spec/dummy/tmp/cache/assets/DA5/0A0/sprockets%2F7a4b5928cec69ab65afff309a04d6b47 +0 -0
  35. data/spec/dummy/tmp/cache/assets/DB3/5D0/sprockets%2Fce1d4d75832c9bdeafd869f6f7b61725 +0 -0
  36. data/spec/dummy/tmp/cache/assets/DB5/040/sprockets%2F9a9da5df88713663b9fbc945facca891 +0 -0
  37. data/spec/dummy/tmp/cache/assets/DF6/0E0/sprockets%2F85b10db6e1afe643aba6d396abdd77f0 +0 -0
  38. metadata +12 -6
@@ -8,5 +8,5 @@ class Teabag.Reporters.HTML.FailureView extends Teabag.Reporters.BaseView
8
8
  super("spec")
9
9
  html = """<h1 class="teabag-clearfix"><a href="#{@spec.link}">#{@spec.fullDescription}</a></h1>"""
10
10
  for error in @spec.errors()
11
- html += """<div>#{@htmlSafe(error.stack || error.message || "Stack trace unavailable")}</div>"""
11
+ html += """<div><strong>#{@htmlSafe(error.message)}</strong><br/>#{@htmlSafe(error.stack || "Stack trace unavailable")}</div>"""
12
12
  @el.innerHTML = html
@@ -31,7 +31,7 @@ class Teabag.Reporters.HTML.SpecView extends Teabag.Reporters.BaseView
31
31
  div = @createEl("div")
32
32
  html = ""
33
33
  for error in @spec.errors()
34
- html += """#{@htmlSafe(error.stack || error.message || "Stack trace unavailable")}"""
34
+ html += """<strong>#{@htmlSafe(error.message)}</strong><br/>#{@htmlSafe(error.stack || "Stack trace unavailable")}"""
35
35
  div.innerHTML = html
36
36
  @append(div)
37
37
 
@@ -32,41 +32,43 @@ class Teabag.Reporters.HTML extends Teabag.Reporters.BaseView
32
32
  el = @createEl("div")
33
33
  document.body.appendChild(el)
34
34
  el.innerHTML = """
35
- <div class="teabag-clearfix">
36
- <div id="teabag-title">
37
- <h1>Teabag</h1>
38
- <ul>
39
- <li>version: <b id="teabag-version"></b></li>
40
- <li id="teabag-env-info"></li>
35
+ <div id="teabag-html-reporter">
36
+ <div class="teabag-clearfix">
37
+ <div id="teabag-title">
38
+ <h1>Teabag</h1>
39
+ <ul>
40
+ <li>version: <b id="teabag-version"></b></li>
41
+ <li id="teabag-env-info"></li>
42
+ </ul>
43
+ </div>
44
+ <div id="teabag-progress"></div>
45
+ <ul id="teabag-stats">
46
+ <li>passes: <b id="teabag-stats-passes">0</b></li>
47
+ <li>failures: <b id="teabag-stats-failures">0</b></li>
48
+ <li>skipped: <b id="teabag-stats-skipped">0</b></li>
49
+ <li>duration: <b id="teabag-stats-duration">&infin;</b></li>
41
50
  </ul>
42
51
  </div>
43
- <div id="teabag-progress"></div>
44
- <ul id="teabag-stats">
45
- <li>passes: <b id="teabag-stats-passes">0</b></li>
46
- <li>failures: <b id="teabag-stats-failures">0</b></li>
47
- <li>skipped: <b id="teabag-stats-skipped">0</b></li>
48
- <li>duration: <b id="teabag-stats-duration">&infin;</b></li>
49
- </ul>
50
- </div>
51
52
 
52
- <div id="teabag-controls" class="teabag-clearfix">
53
- <div id="teabag-toggles">
54
- <button id="teabag-use-catch" title="Toggle using try/catch wrappers when possible">Try/Catch</button>
55
- <button id="teabag-build-full-report" title="Toggle building the full report">Full Report</button>
56
- <button id="teabag-display-progress" title="Toggle displaying progress as tests run">Progress</button>
57
- </div>
58
- <div id="teabag-filter">
59
- #{@buildSuiteSelect()}
60
- <button onclick="window.location.href = window.location.pathname">Run All</button>
61
- <span id="teabag-filter-info">
53
+ <div id="teabag-controls" class="teabag-clearfix">
54
+ <div id="teabag-toggles">
55
+ <button id="teabag-use-catch" title="Toggle using try/catch wrappers when possible">Try/Catch</button>
56
+ <button id="teabag-build-full-report" title="Toggle building the full report">Full Report</button>
57
+ <button id="teabag-display-progress" title="Toggle displaying progress as tests run">Progress</button>
58
+ </div>
59
+ <div id="teabag-filter">
60
+ #{@buildSuiteSelect()}
61
+ <button onclick="window.location.href = window.location.pathname">Run All</button>
62
+ <span id="teabag-filter-info">
63
+ </div>
62
64
  </div>
63
- </div>
64
65
 
65
- <hr/>
66
+ <hr/>
66
67
 
67
- <div id="teabag-report">
68
- <ol id="teabag-report-failures"></ol>
69
- <ol id="teabag-report-all"></ol>
68
+ <div id="teabag-report">
69
+ <ol id="teabag-report-failures"></ol>
70
+ <ol id="teabag-report-all"></ol>
71
+ </div>
70
72
  </div>
71
73
  """
72
74
 
@@ -8,6 +8,7 @@ class @Teabag
8
8
  @defer: false
9
9
  @slow: 75
10
10
  @root: null
11
+ @started: false
11
12
  @finished: false
12
13
  @Reporters: {}
13
14
  @Date: Date
@@ -19,6 +20,7 @@ class @Teabag
19
20
  if @defer
20
21
  @defer = false
21
22
  return
23
+ @started = true
22
24
  new Teabag.Runner()
23
25
 
24
26
 
@@ -2612,6 +2612,8 @@ jasmine.version_= {
2612
2612
 
2613
2613
  Teabag.root = null;
2614
2614
 
2615
+ Teabag.started = false;
2616
+
2615
2617
  Teabag.finished = false;
2616
2618
 
2617
2619
  Teabag.Reporters = {};
@@ -2629,6 +2631,7 @@ jasmine.version_= {
2629
2631
  this.defer = false;
2630
2632
  return;
2631
2633
  }
2634
+ this.started = true;
2632
2635
  return new Teabag.Runner();
2633
2636
  };
2634
2637
 
@@ -3004,7 +3007,7 @@ jasmine.version_= {
3004
3007
  var el;
3005
3008
  el = this.createEl("div");
3006
3009
  document.body.appendChild(el);
3007
- return el.innerHTML = "<div class=\"teabag-clearfix\">\n <div id=\"teabag-title\">\n <h1>Teabag</h1>\n <ul>\n <li>version: <b id=\"teabag-version\"></b></li>\n <li id=\"teabag-env-info\"></li>\n </ul>\n </div>\n <div id=\"teabag-progress\"></div>\n <ul id=\"teabag-stats\">\n <li>passes: <b id=\"teabag-stats-passes\">0</b></li>\n <li>failures: <b id=\"teabag-stats-failures\">0</b></li>\n <li>skipped: <b id=\"teabag-stats-skipped\">0</b></li>\n <li>duration: <b id=\"teabag-stats-duration\">&infin;</b></li>\n </ul>\n</div>\n\n<div id=\"teabag-controls\" class=\"teabag-clearfix\">\n <div id=\"teabag-toggles\">\n <button id=\"teabag-use-catch\" title=\"Toggle using try/catch wrappers when possible\">Try/Catch</button>\n <button id=\"teabag-build-full-report\" title=\"Toggle building the full report\">Full Report</button>\n <button id=\"teabag-display-progress\" title=\"Toggle displaying progress as tests run\">Progress</button>\n </div>\n <div id=\"teabag-filter\">\n " + (this.buildSuiteSelect()) + "\n <button onclick=\"window.location.href = window.location.pathname\">Run All</button>\n <span id=\"teabag-filter-info\">\n </div>\n</div>\n\n<hr/>\n\n<div id=\"teabag-report\">\n <ol id=\"teabag-report-failures\"></ol>\n <ol id=\"teabag-report-all\"></ol>\n</div>";
3010
+ return el.innerHTML = "<div id=\"teabag-html-reporter\">\n <div class=\"teabag-clearfix\">\n <div id=\"teabag-title\">\n <h1>Teabag</h1>\n <ul>\n <li>version: <b id=\"teabag-version\"></b></li>\n <li id=\"teabag-env-info\"></li>\n </ul>\n </div>\n <div id=\"teabag-progress\"></div>\n <ul id=\"teabag-stats\">\n <li>passes: <b id=\"teabag-stats-passes\">0</b></li>\n <li>failures: <b id=\"teabag-stats-failures\">0</b></li>\n <li>skipped: <b id=\"teabag-stats-skipped\">0</b></li>\n <li>duration: <b id=\"teabag-stats-duration\">&infin;</b></li>\n </ul>\n </div>\n\n <div id=\"teabag-controls\" class=\"teabag-clearfix\">\n <div id=\"teabag-toggles\">\n <button id=\"teabag-use-catch\" title=\"Toggle using try/catch wrappers when possible\">Try/Catch</button>\n <button id=\"teabag-build-full-report\" title=\"Toggle building the full report\">Full Report</button>\n <button id=\"teabag-display-progress\" title=\"Toggle displaying progress as tests run\">Progress</button>\n </div>\n <div id=\"teabag-filter\">\n " + (this.buildSuiteSelect()) + "\n <button onclick=\"window.location.href = window.location.pathname\">Run All</button>\n <span id=\"teabag-filter-info\">\n </div>\n </div>\n\n <hr/>\n\n <div id=\"teabag-report\">\n <ol id=\"teabag-report-failures\"></ol>\n <ol id=\"teabag-report-all\"></ol>\n </div>\n</div>";
3008
3011
  };
3009
3012
 
3010
3013
  HTML.prototype.buildSuiteSelect = function() {
@@ -3333,7 +3336,7 @@ jasmine.version_= {
3333
3336
  _ref = this.spec.errors();
3334
3337
  for (_i = 0, _len = _ref.length; _i < _len; _i++) {
3335
3338
  error = _ref[_i];
3336
- html += "" + (this.htmlSafe(error.stack || error.message || "Stack trace unavailable"));
3339
+ html += "<strong>" + (this.htmlSafe(error.message)) + "</strong><br/>" + (this.htmlSafe(error.stack || "Stack trace unavailable"));
3337
3340
  }
3338
3341
  div.innerHTML = html;
3339
3342
  return this.append(div);
@@ -3381,7 +3384,7 @@ jasmine.version_= {
3381
3384
  _ref = this.spec.errors();
3382
3385
  for (_i = 0, _len = _ref.length; _i < _len; _i++) {
3383
3386
  error = _ref[_i];
3384
- html += "<div>" + (this.htmlSafe(error.stack || error.message || "Stack trace unavailable")) + "</div>";
3387
+ html += "<div><strong>" + (this.htmlSafe(error.message)) + "</strong><br/>" + (this.htmlSafe(error.stack || "Stack trace unavailable")) + "</div>";
3385
3388
  }
3386
3389
  return this.el.innerHTML = html;
3387
3390
  };
@@ -5023,6 +5023,8 @@
5023
5023
 
5024
5024
  Teabag.root = null;
5025
5025
 
5026
+ Teabag.started = false;
5027
+
5026
5028
  Teabag.finished = false;
5027
5029
 
5028
5030
  Teabag.Reporters = {};
@@ -5040,6 +5042,7 @@
5040
5042
  this.defer = false;
5041
5043
  return;
5042
5044
  }
5045
+ this.started = true;
5043
5046
  return new Teabag.Runner();
5044
5047
  };
5045
5048
 
@@ -5415,7 +5418,7 @@
5415
5418
  var el;
5416
5419
  el = this.createEl("div");
5417
5420
  document.body.appendChild(el);
5418
- return el.innerHTML = "<div class=\"teabag-clearfix\">\n <div id=\"teabag-title\">\n <h1>Teabag</h1>\n <ul>\n <li>version: <b id=\"teabag-version\"></b></li>\n <li id=\"teabag-env-info\"></li>\n </ul>\n </div>\n <div id=\"teabag-progress\"></div>\n <ul id=\"teabag-stats\">\n <li>passes: <b id=\"teabag-stats-passes\">0</b></li>\n <li>failures: <b id=\"teabag-stats-failures\">0</b></li>\n <li>skipped: <b id=\"teabag-stats-skipped\">0</b></li>\n <li>duration: <b id=\"teabag-stats-duration\">&infin;</b></li>\n </ul>\n</div>\n\n<div id=\"teabag-controls\" class=\"teabag-clearfix\">\n <div id=\"teabag-toggles\">\n <button id=\"teabag-use-catch\" title=\"Toggle using try/catch wrappers when possible\">Try/Catch</button>\n <button id=\"teabag-build-full-report\" title=\"Toggle building the full report\">Full Report</button>\n <button id=\"teabag-display-progress\" title=\"Toggle displaying progress as tests run\">Progress</button>\n </div>\n <div id=\"teabag-filter\">\n " + (this.buildSuiteSelect()) + "\n <button onclick=\"window.location.href = window.location.pathname\">Run All</button>\n <span id=\"teabag-filter-info\">\n </div>\n</div>\n\n<hr/>\n\n<div id=\"teabag-report\">\n <ol id=\"teabag-report-failures\"></ol>\n <ol id=\"teabag-report-all\"></ol>\n</div>";
5421
+ return el.innerHTML = "<div id=\"teabag-html-reporter\">\n <div class=\"teabag-clearfix\">\n <div id=\"teabag-title\">\n <h1>Teabag</h1>\n <ul>\n <li>version: <b id=\"teabag-version\"></b></li>\n <li id=\"teabag-env-info\"></li>\n </ul>\n </div>\n <div id=\"teabag-progress\"></div>\n <ul id=\"teabag-stats\">\n <li>passes: <b id=\"teabag-stats-passes\">0</b></li>\n <li>failures: <b id=\"teabag-stats-failures\">0</b></li>\n <li>skipped: <b id=\"teabag-stats-skipped\">0</b></li>\n <li>duration: <b id=\"teabag-stats-duration\">&infin;</b></li>\n </ul>\n </div>\n\n <div id=\"teabag-controls\" class=\"teabag-clearfix\">\n <div id=\"teabag-toggles\">\n <button id=\"teabag-use-catch\" title=\"Toggle using try/catch wrappers when possible\">Try/Catch</button>\n <button id=\"teabag-build-full-report\" title=\"Toggle building the full report\">Full Report</button>\n <button id=\"teabag-display-progress\" title=\"Toggle displaying progress as tests run\">Progress</button>\n </div>\n <div id=\"teabag-filter\">\n " + (this.buildSuiteSelect()) + "\n <button onclick=\"window.location.href = window.location.pathname\">Run All</button>\n <span id=\"teabag-filter-info\">\n </div>\n </div>\n\n <hr/>\n\n <div id=\"teabag-report\">\n <ol id=\"teabag-report-failures\"></ol>\n <ol id=\"teabag-report-all\"></ol>\n </div>\n</div>";
5419
5422
  };
5420
5423
 
5421
5424
  HTML.prototype.buildSuiteSelect = function() {
@@ -5744,7 +5747,7 @@
5744
5747
  _ref = this.spec.errors();
5745
5748
  for (_i = 0, _len = _ref.length; _i < _len; _i++) {
5746
5749
  error = _ref[_i];
5747
- html += "" + (this.htmlSafe(error.stack || error.message || "Stack trace unavailable"));
5750
+ html += "<strong>" + (this.htmlSafe(error.message)) + "</strong><br/>" + (this.htmlSafe(error.stack || "Stack trace unavailable"));
5748
5751
  }
5749
5752
  div.innerHTML = html;
5750
5753
  return this.append(div);
@@ -5792,7 +5795,7 @@
5792
5795
  _ref = this.spec.errors();
5793
5796
  for (_i = 0, _len = _ref.length; _i < _len; _i++) {
5794
5797
  error = _ref[_i];
5795
- html += "<div>" + (this.htmlSafe(error.stack || error.message || "Stack trace unavailable")) + "</div>";
5798
+ html += "<div><strong>" + (this.htmlSafe(error.message)) + "</strong><br/>" + (this.htmlSafe(error.stack || "Stack trace unavailable")) + "</div>";
5796
5799
  }
5797
5800
  return this.el.innerHTML = html;
5798
5801
  };
@@ -1988,6 +1988,8 @@
1988
1988
 
1989
1989
  Teabag.root = null;
1990
1990
 
1991
+ Teabag.started = false;
1992
+
1991
1993
  Teabag.finished = false;
1992
1994
 
1993
1995
  Teabag.Reporters = {};
@@ -2005,6 +2007,7 @@
2005
2007
  this.defer = false;
2006
2008
  return;
2007
2009
  }
2010
+ this.started = true;
2008
2011
  return new Teabag.Runner();
2009
2012
  };
2010
2013
 
@@ -2380,7 +2383,7 @@
2380
2383
  var el;
2381
2384
  el = this.createEl("div");
2382
2385
  document.body.appendChild(el);
2383
- return el.innerHTML = "<div class=\"teabag-clearfix\">\n <div id=\"teabag-title\">\n <h1>Teabag</h1>\n <ul>\n <li>version: <b id=\"teabag-version\"></b></li>\n <li id=\"teabag-env-info\"></li>\n </ul>\n </div>\n <div id=\"teabag-progress\"></div>\n <ul id=\"teabag-stats\">\n <li>passes: <b id=\"teabag-stats-passes\">0</b></li>\n <li>failures: <b id=\"teabag-stats-failures\">0</b></li>\n <li>skipped: <b id=\"teabag-stats-skipped\">0</b></li>\n <li>duration: <b id=\"teabag-stats-duration\">&infin;</b></li>\n </ul>\n</div>\n\n<div id=\"teabag-controls\" class=\"teabag-clearfix\">\n <div id=\"teabag-toggles\">\n <button id=\"teabag-use-catch\" title=\"Toggle using try/catch wrappers when possible\">Try/Catch</button>\n <button id=\"teabag-build-full-report\" title=\"Toggle building the full report\">Full Report</button>\n <button id=\"teabag-display-progress\" title=\"Toggle displaying progress as tests run\">Progress</button>\n </div>\n <div id=\"teabag-filter\">\n " + (this.buildSuiteSelect()) + "\n <button onclick=\"window.location.href = window.location.pathname\">Run All</button>\n <span id=\"teabag-filter-info\">\n </div>\n</div>\n\n<hr/>\n\n<div id=\"teabag-report\">\n <ol id=\"teabag-report-failures\"></ol>\n <ol id=\"teabag-report-all\"></ol>\n</div>";
2386
+ return el.innerHTML = "<div id=\"teabag-html-reporter\">\n <div class=\"teabag-clearfix\">\n <div id=\"teabag-title\">\n <h1>Teabag</h1>\n <ul>\n <li>version: <b id=\"teabag-version\"></b></li>\n <li id=\"teabag-env-info\"></li>\n </ul>\n </div>\n <div id=\"teabag-progress\"></div>\n <ul id=\"teabag-stats\">\n <li>passes: <b id=\"teabag-stats-passes\">0</b></li>\n <li>failures: <b id=\"teabag-stats-failures\">0</b></li>\n <li>skipped: <b id=\"teabag-stats-skipped\">0</b></li>\n <li>duration: <b id=\"teabag-stats-duration\">&infin;</b></li>\n </ul>\n </div>\n\n <div id=\"teabag-controls\" class=\"teabag-clearfix\">\n <div id=\"teabag-toggles\">\n <button id=\"teabag-use-catch\" title=\"Toggle using try/catch wrappers when possible\">Try/Catch</button>\n <button id=\"teabag-build-full-report\" title=\"Toggle building the full report\">Full Report</button>\n <button id=\"teabag-display-progress\" title=\"Toggle displaying progress as tests run\">Progress</button>\n </div>\n <div id=\"teabag-filter\">\n " + (this.buildSuiteSelect()) + "\n <button onclick=\"window.location.href = window.location.pathname\">Run All</button>\n <span id=\"teabag-filter-info\">\n </div>\n </div>\n\n <hr/>\n\n <div id=\"teabag-report\">\n <ol id=\"teabag-report-failures\"></ol>\n <ol id=\"teabag-report-all\"></ol>\n </div>\n</div>";
2384
2387
  };
2385
2388
 
2386
2389
  HTML.prototype.buildSuiteSelect = function() {
@@ -2709,7 +2712,7 @@
2709
2712
  _ref = this.spec.errors();
2710
2713
  for (_i = 0, _len = _ref.length; _i < _len; _i++) {
2711
2714
  error = _ref[_i];
2712
- html += "" + (this.htmlSafe(error.stack || error.message || "Stack trace unavailable"));
2715
+ html += "<strong>" + (this.htmlSafe(error.message)) + "</strong><br/>" + (this.htmlSafe(error.stack || "Stack trace unavailable"));
2713
2716
  }
2714
2717
  div.innerHTML = html;
2715
2718
  return this.append(div);
@@ -2757,7 +2760,7 @@
2757
2760
  _ref = this.spec.errors();
2758
2761
  for (_i = 0, _len = _ref.length; _i < _len; _i++) {
2759
2762
  error = _ref[_i];
2760
- html += "<div>" + (this.htmlSafe(error.stack || error.message || "Stack trace unavailable")) + "</div>";
2763
+ html += "<div><strong>" + (this.htmlSafe(error.message)) + "</strong><br/>" + (this.htmlSafe(error.stack || "Stack trace unavailable")) + "</div>";
2761
2764
  }
2762
2765
  return this.el.innerHTML = html;
2763
2766
  };
@@ -1,13 +1,25 @@
1
1
  body {
2
2
  margin: 0;
3
+ padding: 0;
4
+ font: 15px/1.5em "Helvetica Neue", Helvetica, Arial, sans-serif;
5
+ background-color: #f4f3ee;
6
+ }
7
+
8
+ /* Base Reporter
9
+ *---------------------------------------------------------------------------*/
10
+ #teabag-html-reporter {
3
11
  padding: 45px 50px 0;
4
12
  min-width: 440px;
5
- background-color: #f4f3ee;
6
13
  border-top: 3px solid #18c2e8;
7
- font: 15px/1.5em "Helvetica Neue", Helvetica, Arial, sans-serif;
8
14
  color: #000;
9
15
  }
10
- .teabag-clearfix:after {
16
+ #teabag-html-reporter hr {
17
+ border: 0;
18
+ background: #cfc8c4;
19
+ height: 1px;
20
+ margin: 20px 0;
21
+ }
22
+ #teabag-html-reporter .teabag-clearfix:after {
11
23
  content: ".";
12
24
  display: block;
13
25
  clear: both;
@@ -15,18 +27,12 @@ body {
15
27
  line-height: 0;
16
28
  height: 0;
17
29
  }
18
- html[xmlns] .teabag-clearfix {
30
+ html[xmlns] #teabag-html-reporter .teabag-clearfix {
19
31
  display: block;
20
32
  }
21
- * html .teabag-clearfix {
33
+ * html #teabag-html-reporter .teabag-clearfix {
22
34
  height: 1%;
23
35
  }
24
- hr {
25
- border: 0;
26
- background: #cfc8c4;
27
- height: 1px;
28
- margin: 20px 0;
29
- }
30
36
 
31
37
  /* Title / Env info
32
38
  *---------------------------------------------------------------------------*/
@@ -319,10 +325,10 @@ hr {
319
325
 
320
326
  /* State Overrides
321
327
  *---------------------------------------------------------------------------*/
322
- body.teabag-failed {
328
+ body.teabag-failed #teabag-html-reporter {
323
329
  border-top: 3px solid #ff3f3c;
324
330
  }
325
- body.teabag-passed {
331
+ body.teabag-passed #teabag-html-reporter {
326
332
  border-top: 3px solid #51e431;
327
333
  }
328
334
  body.teabag-failed #teabag-progress .teabag-indicator {
@@ -336,10 +342,12 @@ body.teabag-passed #teabag-progress .teabag-indicator {
336
342
  *---------------------------------------------------------------------------*/
337
343
  #teabag-fixtures {
338
344
  position: absolute;
345
+ position: fixed;
339
346
  top: 0;
340
347
  left: 0;
341
348
  width: 10000px;
342
349
  opacity: 0;
350
+ background: #fff;
343
351
  }
344
352
 
345
353
  /* Responsive
@@ -5,7 +5,7 @@
5
5
  <%= stylesheet_link_tag *@suite.stylesheets %>
6
6
  <%= csrf_meta_tags %>
7
7
  <meta name="viewport" content="width=device-width, user-scalable=no">
8
- <%= javascript_include_tag_for_teabag *@suite.core_javascripts %>
8
+ <%= javascript_include_tag *@suite.core_javascripts %>
9
9
  <script type="text/javascript">
10
10
  // pass relevant info to javascript
11
11
  Teabag.version = <%=raw Teabag::VERSION.inspect %>;
@@ -15,11 +15,12 @@
15
15
  // start the execution of the specs (on onload, handling existing onload events)
16
16
  window.originalOnload = window.onload;
17
17
  window.onload = function() {
18
+ if (Teabag.started) return; // ensure this never happens more than once
18
19
  if (window.originalOnload) window.originalOnload();
19
20
  Teabag.execute();
20
21
  }
21
22
  </script>
22
- <%= javascript_include_tag_for_teabag *@suite.spec_javascripts %>
23
+ <%= javascript_include_tag *@suite.spec_javascripts %>
23
24
  </head>
24
25
  <body>
25
26
  </body>
@@ -5,7 +5,7 @@ module Teabag
5
5
 
6
6
  def initialize(suite_name = nil)
7
7
  # force asset debugging off -- gives us nicer errors on missing files, bad coffeescript, etc
8
- Rails.application.config.assets.debug = false
8
+ #Rails.application.config.assets.debug = false
9
9
 
10
10
  if suite_name
11
11
  @suites = [suite_name]
@@ -1,3 +1,3 @@
1
1
  module Teabag
2
- VERSION = "0.4.4"
2
+ VERSION = "0.4.5"
3
3
  end
@@ -512272,3 +512272,726 @@ Compiled teabag/base/teabag.js (135ms) (pid 24085)
512272
512272
  Compiled teabag/jasmine.js (136ms) (pid 24085)
512273
512273
  Compiled teabag/mocha.js (129ms) (pid 24085)
512274
512274
  Compiled teabag/qunit.js (126ms) (pid 24085)
512275
+ Compiled teabag/base/teabag.js (125ms) (pid 27899)
512276
+ Compiled teabag/jasmine.js (161ms) (pid 27899)
512277
+ Compiled teabag/mocha.js (127ms) (pid 27899)
512278
+ Compiled teabag/qunit.js (150ms) (pid 27899)
512279
+ Compiled teabag/base/reporters/html/spec_view.js (156ms) (pid 28885)
512280
+ Compiled teabag/base/reporters/html/failure_view.js (107ms) (pid 28885)
512281
+ Compiled teabag/base/reporters/html.js (182ms) (pid 28885)
512282
+ Compiled teabag/base/teabag.js (115ms) (pid 28885)
512283
+ Compiled teabag/jasmine.js (137ms) (pid 28885)
512284
+ Compiled teabag/mocha.js (130ms) (pid 28885)
512285
+ Compiled teabag/qunit.js (128ms) (pid 28885)
512286
+ Compiled teabag/jasmine.js (160ms) (pid 29227)
512287
+ Compiled teabag/base/teabag.js (116ms) (pid 30242)
512288
+ Compiled teabag/jasmine.js (160ms) (pid 30242)
512289
+ Compiled teabag/mocha.js (128ms) (pid 30242)
512290
+ Compiled teabag/qunit.js (125ms) (pid 30242)
512291
+
512292
+
512293
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-29 21:38:30 -0700
512294
+ Processing by Teabag::SpecController#index as HTML
512295
+ Parameters: {"suite"=>"default"}
512296
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.3ms)
512297
+ Completed 200 OK in 15ms (Views: 15.1ms)
512298
+
512299
+
512300
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-29 21:38:30 -0700
512301
+ Compiled teabag.css (0ms) (pid 30642)
512302
+ Served asset /teabag.css - 200 OK (13ms)
512303
+
512304
+
512305
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-29 21:38:30 -0700
512306
+ Served asset /teabag/jasmine.js - 200 OK (14ms)
512307
+
512308
+
512309
+ Started GET "/assets/spec_helper.js" for 127.0.0.1 at 2012-12-29 21:38:30 -0700
512310
+ Served asset /spec_helper.js - 200 OK (4ms)
512311
+
512312
+
512313
+ Started GET "/assets/teabag/base/fixture_spec.js" for 127.0.0.1 at 2012-12-29 21:38:30 -0700
512314
+ Served asset /teabag/base/fixture_spec.js - 200 OK (4ms)
512315
+
512316
+
512317
+ Started GET "/assets/teabag/base/reporters/console_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512318
+ Served asset /teabag/base/reporters/console_spec.js - 200 OK (4ms)
512319
+
512320
+
512321
+ Started GET "/assets/teabag/base/reporters/html/base_view_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512322
+ Served asset /teabag/base/reporters/html/base_view_spec.js - 200 OK (4ms)
512323
+
512324
+
512325
+ Started GET "/assets/teabag/base/reporters/html/failure_view_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512326
+ Served asset /teabag/base/reporters/html/failure_view_spec.js - 200 OK (4ms)
512327
+
512328
+
512329
+ Started GET "/assets/teabag/base/reporters/html/progress_view_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512330
+ Served asset /teabag/base/reporters/html/progress_view_spec.js - 200 OK (4ms)
512331
+
512332
+
512333
+ Started GET "/assets/teabag/base/reporters/html/spec_view_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512334
+ Served asset /teabag/base/reporters/html/spec_view_spec.js - 200 OK (4ms)
512335
+
512336
+
512337
+ Started GET "/assets/teabag/base/reporters/html/suite_view_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512338
+ Served asset /teabag/base/reporters/html/suite_view_spec.js - 200 OK (4ms)
512339
+
512340
+
512341
+ Started GET "/assets/teabag/base/reporters/html_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512342
+ Served asset /teabag/base/reporters/html_spec.js - 200 OK (5ms)
512343
+
512344
+
512345
+ Started GET "/assets/teabag/base/runner_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512346
+ Served asset /teabag/base/runner_spec.js - 200 OK (3ms)
512347
+
512348
+
512349
+ Started GET "/assets/teabag/base/teabag_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512350
+ Served asset /teabag/base/teabag_spec.js - 200 OK (26ms)
512351
+
512352
+
512353
+ Started GET "/assets/teabag/phantomjs/runner_spec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512354
+ Served asset /teabag/phantomjs/runner_spec.js - 200 OK (4ms)
512355
+
512356
+
512357
+ Started GET "/teabag/jasmine" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512358
+ Processing by Teabag::SpecController#index as HTML
512359
+ Parameters: {"suite"=>"jasmine"}
512360
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.5ms)
512361
+ Completed 200 OK in 7ms (Views: 6.6ms)
512362
+
512363
+
512364
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512365
+ Served asset /teabag.css - 200 OK (0ms)
512366
+
512367
+
512368
+ Started GET "/assets/teabag/jasmine.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512369
+ Served asset /teabag/jasmine.js - 200 OK (4ms)
512370
+
512371
+
512372
+ Started GET "/assets/jasmine_helper.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512373
+ Served asset /jasmine_helper.js - 200 OK (12ms)
512374
+
512375
+
512376
+ Started GET "/assets/teabag/jasmine/jasmine_jspec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512377
+ Served asset /teabag/jasmine/jasmine_jspec.js - 200 OK (4ms)
512378
+
512379
+
512380
+ Started GET "/assets/teabag/jasmine/models_jspec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512381
+ Served asset /teabag/jasmine/models_jspec.js - 200 OK (11ms)
512382
+
512383
+
512384
+ Started GET "/assets/teabag/jasmine/reporters/html_jspec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512385
+ Served asset /teabag/jasmine/reporters/html_jspec.js - 200 OK (5ms)
512386
+
512387
+
512388
+ Started GET "/assets/teabag/jasmine/runner_jspec.js" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512389
+ Served asset /teabag/jasmine/runner_jspec.js - 200 OK (3ms)
512390
+
512391
+
512392
+ Started GET "/teabag/fixtures/fixture.html" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512393
+ Processing by Teabag::SpecController#fixtures as HTML
512394
+ Parameters: {"filename"=>"fixture"}
512395
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.8ms)
512396
+ Completed 200 OK in 4ms (Views: 3.3ms)
512397
+
512398
+
512399
+ Started GET "/teabag/fixtures/fixture.json" for 127.0.0.1 at 2012-12-29 21:38:31 -0700
512400
+ Processing by Teabag::SpecController#fixtures as JSON
512401
+ Parameters: {"filename"=>"fixture"}
512402
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.json (0.5ms)
512403
+ Completed 200 OK in 2ms (Views: 1.9ms)
512404
+
512405
+
512406
+ Started GET "/teabag/fixtures/fixture.html?1356842312021" for 127.0.0.1 at 2012-12-29 21:38:32 -0700
512407
+ Processing by Teabag::SpecController#fixtures as HTML
512408
+ Parameters: {"1356842312021"=>nil, "filename"=>"fixture"}
512409
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.4ms)
512410
+ Completed 200 OK in 2ms (Views: 2.1ms)
512411
+
512412
+
512413
+ Started GET "/teabag/mocha" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512414
+ Processing by Teabag::SpecController#index as HTML
512415
+ Parameters: {"suite"=>"mocha"}
512416
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (5.0ms)
512417
+ Completed 200 OK in 6ms (Views: 6.2ms)
512418
+
512419
+
512420
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512421
+ Served asset /teabag.css - 200 OK (0ms)
512422
+
512423
+
512424
+ Started GET "/assets/teabag/mocha.js" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512425
+ Served asset /teabag/mocha.js - 200 OK (48ms)
512426
+
512427
+
512428
+ Started GET "/assets/mocha_helper.js" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512429
+ Served asset /mocha_helper.js - 200 OK (11ms)
512430
+
512431
+
512432
+ Started GET "/assets/teabag/mocha/reporters/console_mspec.js" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512433
+ Served asset /teabag/mocha/reporters/console_mspec.js - 200 OK (3ms)
512434
+
512435
+
512436
+ Started GET "/assets/teabag/mocha/mocha_mspec.js" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512437
+ Served asset /teabag/mocha/mocha_mspec.js - 200 OK (3ms)
512438
+
512439
+
512440
+ Started GET "/assets/teabag/mocha/models_mspec.js" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512441
+ Served asset /teabag/mocha/models_mspec.js - 200 OK (5ms)
512442
+
512443
+
512444
+ Started GET "/assets/teabag/mocha/reporters/html_mspec.js" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512445
+ Served asset /teabag/mocha/reporters/html_mspec.js - 200 OK (3ms)
512446
+
512447
+
512448
+ Started GET "/assets/teabag/mocha/runner_mspec.js" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512449
+ Served asset /teabag/mocha/runner_mspec.js - 200 OK (3ms)
512450
+
512451
+
512452
+ Started GET "/teabag/fixtures/fixture.html" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512453
+ Processing by Teabag::SpecController#fixtures as HTML
512454
+ Parameters: {"filename"=>"fixture"}
512455
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.6ms)
512456
+ Completed 200 OK in 3ms (Views: 2.4ms)
512457
+
512458
+
512459
+ Started GET "/teabag/fixtures/fixture.json" for 127.0.0.1 at 2012-12-29 21:38:33 -0700
512460
+ Processing by Teabag::SpecController#fixtures as JSON
512461
+ Parameters: {"filename"=>"fixture"}
512462
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.json (0.3ms)
512463
+ Completed 200 OK in 1ms (Views: 0.9ms)
512464
+
512465
+
512466
+ Started GET "/teabag/qunit" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512467
+ Processing by Teabag::SpecController#index as HTML
512468
+ Parameters: {"suite"=>"qunit"}
512469
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (6.7ms)
512470
+ Completed 200 OK in 8ms (Views: 7.9ms)
512471
+
512472
+
512473
+ Started GET "/assets/teabag.css" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512474
+ Served asset /teabag.css - 200 OK (0ms)
512475
+
512476
+
512477
+ Started GET "/assets/teabag/qunit.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512478
+ Served asset /teabag/qunit.js - 200 OK (20ms)
512479
+
512480
+
512481
+ Started GET "/assets/qunit_helper.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512482
+ Served asset /qunit_helper.js - 200 OK (39ms)
512483
+
512484
+
512485
+ Started GET "/assets/teabag/qunit/models_test.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512486
+ Served asset /teabag/qunit/models_test.js - 200 OK (5ms)
512487
+
512488
+
512489
+ Started GET "/assets/teabag/qunit/reporters/html/failure_view_test.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512490
+ Served asset /teabag/qunit/reporters/html/failure_view_test.js - 200 OK (5ms)
512491
+
512492
+
512493
+ Started GET "/assets/teabag/qunit/reporters/console_test.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512494
+ Served asset /teabag/qunit/reporters/console_test.js - 200 OK (5ms)
512495
+
512496
+
512497
+ Started GET "/assets/teabag/qunit/qunit_test.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512498
+ Served asset /teabag/qunit/qunit_test.js - 200 OK (4ms)
512499
+
512500
+
512501
+ Started GET "/assets/teabag/qunit/reporters/html/spec_view_test.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512502
+ Served asset /teabag/qunit/reporters/html/spec_view_test.js - 200 OK (5ms)
512503
+
512504
+
512505
+ Started GET "/assets/teabag/qunit/reporters/html/suite_view_test.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512506
+ Served asset /teabag/qunit/reporters/html/suite_view_test.js - 200 OK (4ms)
512507
+
512508
+
512509
+ Started GET "/assets/teabag/qunit/reporters/html_test.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512510
+ Served asset /teabag/qunit/reporters/html_test.js - 200 OK (3ms)
512511
+
512512
+
512513
+ Started GET "/assets/teabag/qunit/runner_test.js" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512514
+ Served asset /teabag/qunit/runner_test.js - 200 OK (4ms)
512515
+
512516
+
512517
+ Started GET "/teabag/fixtures/fixture.html" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512518
+ Processing by Teabag::SpecController#fixtures as HTML
512519
+ Parameters: {"filename"=>"fixture"}
512520
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.5ms)
512521
+ Completed 200 OK in 3ms (Views: 2.3ms)
512522
+
512523
+
512524
+ Started GET "/teabag/fixtures/fixture.json" for 127.0.0.1 at 2012-12-29 21:38:35 -0700
512525
+ Processing by Teabag::SpecController#fixtures as JSON
512526
+ Parameters: {"filename"=>"fixture"}
512527
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.json (0.3ms)
512528
+ Completed 200 OK in 1ms (Views: 1.0ms)
512529
+
512530
+
512531
+ Started GET "/teabag/default" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512532
+ Processing by Teabag::SpecController#index as HTML
512533
+ Parameters: {"suite"=>"default"}
512534
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (196.0ms)
512535
+ Completed 200 OK in 202ms (Views: 202.0ms)
512536
+
512537
+
512538
+ Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512539
+ Served asset /teabag.css - 200 OK (1ms)
512540
+
512541
+
512542
+ Started GET "/assets/teabag/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512543
+ Served asset /teabag/base/reporters/html/base_view.js - 200 OK (1ms)
512544
+
512545
+
512546
+ Started GET "/assets/teabag/base/runner.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512547
+ Served asset /teabag/base/runner.js - 200 OK (1ms)
512548
+
512549
+
512550
+ Started GET "/assets/teabag/base/teabag.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512551
+ Served asset /teabag/base/teabag.js - 200 OK (11ms)
512552
+
512553
+
512554
+ Started GET "/assets/jasmine-1.3.1.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512555
+ Served asset /jasmine-1.3.1.js - 200 OK (2ms)
512556
+
512557
+
512558
+ Started GET "/assets/teabag/base/fixture.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512559
+ Served asset /teabag/base/fixture.js - 200 OK (22ms)
512560
+
512561
+
512562
+ Started GET "/assets/teabag/base/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512563
+ Served asset /teabag/base/reporters/html.js - 200 OK (6ms)
512564
+
512565
+
512566
+ Started GET "/assets/teabag/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512567
+ Served asset /teabag/base/reporters/html/progress_view.js - 200 OK (1ms)
512568
+
512569
+
512570
+ Started GET "/assets/teabag/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512571
+ Served asset /teabag/base/reporters/html/spec_view.js - 200 OK (1ms)
512572
+
512573
+
512574
+ Started GET "/assets/teabag/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512575
+ Served asset /teabag/base/reporters/html/failure_view.js - 200 OK (1ms)
512576
+
512577
+
512578
+ Started GET "/assets/teabag/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512579
+ Served asset /teabag/base/reporters/html/suite_view.js - 200 OK (1ms)
512580
+
512581
+
512582
+ Started GET "/assets/teabag/base/reporters/console.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512583
+ Served asset /teabag/base/reporters/console.js - 200 OK (1ms)
512584
+
512585
+
512586
+ Started GET "/assets/teabag/jasmine/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512587
+ Served asset /teabag/jasmine/reporters/html.js - 200 OK (1ms)
512588
+
512589
+
512590
+ Started GET "/assets/teabag/jasmine.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512591
+ Served asset /teabag/jasmine.js - 200 OK (16ms)
512592
+
512593
+
512594
+ Started GET "/assets/teabag/base/fixture_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512595
+ Served asset /teabag/base/fixture_spec.js - 200 OK (2ms)
512596
+
512597
+
512598
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512599
+ Served asset /spec_helper.js - 200 OK (1ms)
512600
+
512601
+
512602
+ Started GET "/assets/teabag/base/reporters/html/base_view_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512603
+ Served asset /teabag/base/reporters/html/base_view_spec.js - 200 OK (2ms)
512604
+
512605
+
512606
+ Started GET "/assets/teabag/base/reporters/console_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512607
+ Served asset /teabag/base/reporters/console_spec.js - 200 OK (2ms)
512608
+
512609
+
512610
+ Started GET "/assets/teabag/base/reporters/html/failure_view_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512611
+ Served asset /teabag/base/reporters/html/failure_view_spec.js - 200 OK (2ms)
512612
+
512613
+
512614
+ Started GET "/assets/teabag/base/reporters/html/progress_view_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512615
+ Served asset /teabag/base/reporters/html/progress_view_spec.js - 200 OK (2ms)
512616
+
512617
+
512618
+ Started GET "/assets/teabag/base/reporters/html/spec_view_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512619
+ Served asset /teabag/base/reporters/html/spec_view_spec.js - 200 OK (2ms)
512620
+
512621
+
512622
+ Started GET "/assets/teabag/base/runner_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512623
+ Served asset /teabag/base/runner_spec.js - 200 OK (2ms)
512624
+
512625
+
512626
+ Started GET "/assets/teabag/base/reporters/html_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512627
+ Served asset /teabag/base/reporters/html_spec.js - 200 OK (2ms)
512628
+
512629
+
512630
+ Started GET "/assets/teabag/base/reporters/html/suite_view_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512631
+ Served asset /teabag/base/reporters/html/suite_view_spec.js - 200 OK (2ms)
512632
+
512633
+
512634
+ Started GET "/assets/teabag/base/teabag_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512635
+ Served asset /teabag/base/teabag_spec.js - 200 OK (1ms)
512636
+
512637
+
512638
+ Started GET "/assets/teabag/phantomjs/runner_spec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512639
+ Served asset /teabag/phantomjs/runner_spec.js - 200 OK (2ms)
512640
+
512641
+
512642
+ Started GET "/assets/drivers/phantomjs/runner.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:38 -0700
512643
+ Served asset /drivers/phantomjs/runner.js - 200 OK (2ms)
512644
+
512645
+
512646
+ Started GET "/teabag/jasmine" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512647
+ Processing by Teabag::SpecController#index as HTML
512648
+ Parameters: {"suite"=>"jasmine"}
512649
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (78.3ms)
512650
+ Completed 200 OK in 80ms (Views: 79.6ms)
512651
+
512652
+
512653
+ Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512654
+ Served asset /teabag.css - 200 OK (0ms)
512655
+
512656
+
512657
+ Started GET "/assets/jasmine-1.3.1.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512658
+ Served asset /jasmine-1.3.1.js - 200 OK (0ms)
512659
+
512660
+
512661
+ Started GET "/assets/teabag/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512662
+ Served asset /teabag/base/reporters/html/base_view.js - 200 OK (0ms)
512663
+
512664
+
512665
+ Started GET "/assets/teabag/base/teabag.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512666
+ Served asset /teabag/base/teabag.js - 200 OK (0ms)
512667
+
512668
+
512669
+ Started GET "/assets/teabag/base/fixture.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512670
+ Served asset /teabag/base/fixture.js - 200 OK (0ms)
512671
+
512672
+
512673
+ Started GET "/assets/teabag/base/runner.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512674
+ Served asset /teabag/base/runner.js - 200 OK (0ms)
512675
+
512676
+
512677
+ Started GET "/assets/teabag/base/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512678
+ Served asset /teabag/base/reporters/html.js - 200 OK (0ms)
512679
+
512680
+
512681
+ Started GET "/assets/teabag/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512682
+ Served asset /teabag/base/reporters/html/progress_view.js - 200 OK (0ms)
512683
+
512684
+
512685
+ Started GET "/assets/teabag/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512686
+ Served asset /teabag/base/reporters/html/spec_view.js - 200 OK (0ms)
512687
+
512688
+
512689
+ Started GET "/assets/teabag/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512690
+ Served asset /teabag/base/reporters/html/failure_view.js - 200 OK (0ms)
512691
+
512692
+
512693
+ Started GET "/assets/teabag/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512694
+ Served asset /teabag/base/reporters/html/suite_view.js - 200 OK (0ms)
512695
+
512696
+
512697
+ Started GET "/assets/teabag/base/reporters/console.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512698
+ Served asset /teabag/base/reporters/console.js - 200 OK (0ms)
512699
+
512700
+
512701
+ Started GET "/assets/teabag/jasmine/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512702
+ Served asset /teabag/jasmine/reporters/html.js - 200 OK (0ms)
512703
+
512704
+
512705
+ Started GET "/assets/teabag/jasmine.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512706
+ Served asset /teabag/jasmine.js - 200 OK (0ms)
512707
+
512708
+
512709
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512710
+ Served asset /jquery.js - 200 OK (4ms)
512711
+
512712
+
512713
+ Started GET "/assets/support/jasmine-jquery.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512714
+ Served asset /support/jasmine-jquery.js - 200 OK (1ms)
512715
+
512716
+
512717
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512718
+ Served asset /spec_helper.js - 200 OK (0ms)
512719
+
512720
+
512721
+ Started GET "/assets/jasmine_helper.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512722
+ Served asset /jasmine_helper.js - 200 OK (5ms)
512723
+
512724
+
512725
+ Started GET "/assets/teabag/jasmine/models_jspec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512726
+ Served asset /teabag/jasmine/models_jspec.js - 200 OK (2ms)
512727
+
512728
+
512729
+ Started GET "/assets/teabag/jasmine/jasmine_jspec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512730
+ Served asset /teabag/jasmine/jasmine_jspec.js - 200 OK (24ms)
512731
+
512732
+
512733
+ Started GET "/assets/teabag/jasmine/reporters/html_jspec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512734
+ Served asset /teabag/jasmine/reporters/html_jspec.js - 200 OK (2ms)
512735
+
512736
+
512737
+ Started GET "/assets/teabag/jasmine/runner_jspec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512738
+ Served asset /teabag/jasmine/runner_jspec.js - 200 OK (2ms)
512739
+
512740
+
512741
+ Started GET "/teabag/fixtures/fixture.html" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512742
+ Processing by Teabag::SpecController#fixtures as HTML
512743
+ Parameters: {"filename"=>"fixture"}
512744
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.6ms)
512745
+ Completed 200 OK in 5ms (Views: 4.5ms)
512746
+
512747
+
512748
+ Started GET "/teabag/fixtures/fixture.json" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512749
+ Processing by Teabag::SpecController#fixtures as JSON
512750
+ Parameters: {"filename"=>"fixture"}
512751
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.json (0.4ms)
512752
+ Completed 200 OK in 2ms (Views: 1.9ms)
512753
+
512754
+
512755
+ Started GET "/teabag/fixtures/fixture.html?1356843939725" for 127.0.0.1 at 2012-12-29 22:05:39 -0700
512756
+ Processing by Teabag::SpecController#fixtures as HTML
512757
+ Parameters: {"1356843939725"=>nil, "filename"=>"fixture"}
512758
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.3ms)
512759
+ Completed 200 OK in 2ms (Views: 2.0ms)
512760
+
512761
+
512762
+ Started GET "/teabag/mocha" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512763
+ Processing by Teabag::SpecController#index as HTML
512764
+ Parameters: {"suite"=>"mocha"}
512765
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (105.8ms)
512766
+ Completed 200 OK in 108ms (Views: 107.7ms)
512767
+
512768
+
512769
+ Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512770
+ Served asset /teabag.css - 200 OK (0ms)
512771
+
512772
+
512773
+ Started GET "/assets/teabag/base/runner.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512774
+ Served asset /teabag/base/runner.js - 200 OK (0ms)
512775
+
512776
+
512777
+ Started GET "/assets/teabag/base/fixture.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512778
+ Served asset /teabag/base/fixture.js - 200 OK (0ms)
512779
+
512780
+
512781
+ Started GET "/assets/mocha-1.7.4.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512782
+ Served asset /mocha-1.7.4.js - 200 OK (3ms)
512783
+
512784
+
512785
+ Started GET "/assets/teabag/base/teabag.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512786
+ Served asset /teabag/base/teabag.js - 200 OK (0ms)
512787
+
512788
+
512789
+ Started GET "/assets/teabag/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512790
+ Served asset /teabag/base/reporters/html/base_view.js - 200 OK (0ms)
512791
+
512792
+
512793
+ Started GET "/assets/teabag/base/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512794
+ Served asset /teabag/base/reporters/html.js - 200 OK (0ms)
512795
+
512796
+
512797
+ Started GET "/assets/teabag/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512798
+ Served asset /teabag/base/reporters/html/progress_view.js - 200 OK (0ms)
512799
+
512800
+
512801
+ Started GET "/assets/teabag/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512802
+ Served asset /teabag/base/reporters/html/spec_view.js - 200 OK (0ms)
512803
+
512804
+
512805
+ Started GET "/assets/teabag/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512806
+ Served asset /teabag/base/reporters/html/failure_view.js - 200 OK (0ms)
512807
+
512808
+
512809
+ Started GET "/assets/teabag/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512810
+ Served asset /teabag/base/reporters/html/suite_view.js - 200 OK (0ms)
512811
+
512812
+
512813
+ Started GET "/assets/teabag/base/reporters/console.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512814
+ Served asset /teabag/base/reporters/console.js - 200 OK (0ms)
512815
+
512816
+
512817
+ Started GET "/assets/teabag/mocha/reporters/console.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512818
+ Served asset /teabag/mocha/reporters/console.js - 200 OK (1ms)
512819
+
512820
+
512821
+ Started GET "/assets/teabag/mocha/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512822
+ Served asset /teabag/mocha/reporters/html.js - 200 OK (1ms)
512823
+
512824
+
512825
+ Started GET "/assets/teabag/mocha.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512826
+ Served asset /teabag/mocha.js - 200 OK (17ms)
512827
+
512828
+
512829
+ Started GET "/assets/support/sinon.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512830
+ Served asset /support/sinon.js - 200 OK (2ms)
512831
+
512832
+
512833
+ Started GET "/assets/support/expect.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512834
+ Served asset /support/expect.js - 200 OK (3ms)
512835
+
512836
+
512837
+ Started GET "/assets/mocha_helper.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512838
+ Served asset /mocha_helper.js - 200 OK (5ms)
512839
+
512840
+
512841
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512842
+ Served asset /spec_helper.js - 200 OK (0ms)
512843
+
512844
+
512845
+ Started GET "/assets/teabag/mocha/mocha_mspec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512846
+ Served asset /teabag/mocha/mocha_mspec.js - 200 OK (1ms)
512847
+
512848
+
512849
+ Started GET "/assets/teabag/mocha/models_mspec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512850
+ Served asset /teabag/mocha/models_mspec.js - 200 OK (3ms)
512851
+
512852
+
512853
+ Started GET "/assets/teabag/mocha/reporters/console_mspec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512854
+ Served asset /teabag/mocha/reporters/console_mspec.js - 200 OK (2ms)
512855
+
512856
+
512857
+ Started GET "/assets/teabag/mocha/reporters/html_mspec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512858
+ Served asset /teabag/mocha/reporters/html_mspec.js - 200 OK (2ms)
512859
+
512860
+
512861
+ Started GET "/assets/teabag/mocha/runner_mspec.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512862
+ Served asset /teabag/mocha/runner_mspec.js - 200 OK (1ms)
512863
+
512864
+
512865
+ Started GET "/teabag/fixtures/fixture.html" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512866
+ Processing by Teabag::SpecController#fixtures as HTML
512867
+ Parameters: {"filename"=>"fixture"}
512868
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.5ms)
512869
+ Completed 200 OK in 2ms (Views: 2.2ms)
512870
+
512871
+
512872
+ Started GET "/teabag/fixtures/fixture.json" for 127.0.0.1 at 2012-12-29 22:05:41 -0700
512873
+ Processing by Teabag::SpecController#fixtures as JSON
512874
+ Parameters: {"filename"=>"fixture"}
512875
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.json (0.3ms)
512876
+ Completed 200 OK in 1ms (Views: 1.0ms)
512877
+
512878
+
512879
+ Started GET "/teabag/qunit" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512880
+ Processing by Teabag::SpecController#index as HTML
512881
+ Parameters: {"suite"=>"qunit"}
512882
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (123.8ms)
512883
+ Completed 200 OK in 126ms (Views: 125.4ms)
512884
+
512885
+
512886
+ Started GET "/assets/teabag.css?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512887
+ Served asset /teabag.css - 200 OK (0ms)
512888
+
512889
+
512890
+ Started GET "/assets/qunit-1.10.0.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512891
+ Served asset /qunit-1.10.0.js - 200 OK (6ms)
512892
+
512893
+
512894
+ Started GET "/assets/teabag/base/runner.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512895
+ Served asset /teabag/base/runner.js - 200 OK (0ms)
512896
+
512897
+
512898
+ Started GET "/assets/teabag/base/teabag.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512899
+ Served asset /teabag/base/teabag.js - 200 OK (0ms)
512900
+
512901
+
512902
+ Started GET "/assets/teabag/base/fixture.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512903
+ Served asset /teabag/base/fixture.js - 200 OK (0ms)
512904
+
512905
+
512906
+ Started GET "/assets/teabag/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512907
+ Served asset /teabag/base/reporters/html/base_view.js - 200 OK (0ms)
512908
+
512909
+
512910
+ Started GET "/assets/teabag/base/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512911
+ Served asset /teabag/base/reporters/html.js - 200 OK (0ms)
512912
+
512913
+
512914
+ Started GET "/assets/teabag/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512915
+ Served asset /teabag/base/reporters/html/spec_view.js - 200 OK (0ms)
512916
+
512917
+
512918
+ Started GET "/assets/teabag/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512919
+ Served asset /teabag/base/reporters/html/progress_view.js - 200 OK (0ms)
512920
+
512921
+
512922
+ Started GET "/assets/teabag/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512923
+ Served asset /teabag/base/reporters/html/failure_view.js - 200 OK (0ms)
512924
+
512925
+
512926
+ Started GET "/assets/teabag/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512927
+ Served asset /teabag/base/reporters/html/suite_view.js - 200 OK (0ms)
512928
+
512929
+
512930
+ Started GET "/assets/teabag/base/reporters/console.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512931
+ Served asset /teabag/base/reporters/console.js - 200 OK (0ms)
512932
+
512933
+
512934
+ Started GET "/assets/teabag/qunit/reporters/console.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512935
+ Served asset /teabag/qunit/reporters/console.js - 200 OK (2ms)
512936
+
512937
+
512938
+ Started GET "/assets/teabag/qunit.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512939
+ Served asset /teabag/qunit.js - 200 OK (15ms)
512940
+
512941
+
512942
+ Started GET "/assets/teabag/qunit/reporters/html.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512943
+ Served asset /teabag/qunit/reporters/html.js - 200 OK (1ms)
512944
+
512945
+
512946
+ Started GET "/assets/support/sinon.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512947
+ Served asset /support/sinon.js - 200 OK (0ms)
512948
+
512949
+
512950
+ Started GET "/assets/teabag/qunit/models_test.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512951
+ Served asset /teabag/qunit/models_test.js - 200 OK (2ms)
512952
+
512953
+
512954
+ Started GET "/assets/qunit_helper.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512955
+ Served asset /qunit_helper.js - 200 OK (5ms)
512956
+
512957
+
512958
+ Started GET "/assets/teabag/qunit/qunit_test.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512959
+ Served asset /teabag/qunit/qunit_test.js - 200 OK (2ms)
512960
+
512961
+
512962
+ Started GET "/assets/teabag/qunit/reporters/console_test.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512963
+ Served asset /teabag/qunit/reporters/console_test.js - 200 OK (2ms)
512964
+
512965
+
512966
+ Started GET "/assets/teabag/qunit/reporters/html/spec_view_test.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512967
+ Served asset /teabag/qunit/reporters/html/spec_view_test.js - 200 OK (2ms)
512968
+
512969
+
512970
+ Started GET "/assets/teabag/qunit/reporters/html/failure_view_test.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512971
+ Served asset /teabag/qunit/reporters/html/failure_view_test.js - 200 OK (2ms)
512972
+
512973
+
512974
+ Started GET "/assets/teabag/qunit/reporters/html/suite_view_test.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512975
+ Served asset /teabag/qunit/reporters/html/suite_view_test.js - 200 OK (2ms)
512976
+
512977
+
512978
+ Started GET "/assets/teabag/qunit/reporters/html_test.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512979
+ Served asset /teabag/qunit/reporters/html_test.js - 200 OK (2ms)
512980
+
512981
+
512982
+ Started GET "/assets/teabag/qunit/runner_test.js?body=1" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512983
+ Served asset /teabag/qunit/runner_test.js - 200 OK (2ms)
512984
+
512985
+
512986
+ Started GET "/teabag/fixtures/fixture.html" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512987
+ Processing by Teabag::SpecController#fixtures as HTML
512988
+ Parameters: {"filename"=>"fixture"}
512989
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.html.haml (1.6ms)
512990
+ Completed 200 OK in 3ms (Views: 2.4ms)
512991
+
512992
+
512993
+ Started GET "/teabag/fixtures/fixture.json" for 127.0.0.1 at 2012-12-29 22:05:43 -0700
512994
+ Processing by Teabag::SpecController#fixtures as JSON
512995
+ Parameters: {"filename"=>"fixture"}
512996
+ Rendered /Users/jejacks0n/Projects/teabag/spec/javascripts/fixtures/fixture.json (0.3ms)
512997
+ Completed 200 OK in 1ms (Views: 1.0ms)
@@ -4381,3 +4381,13 @@ Compiled drivers/phantomjs/runner.js (119ms) (pid 13611)
4381
4381
  Compiled teabag/phantomjs/runner_spec.js (264ms) (pid 13611)
4382
4382
  Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (1722.0ms)
4383
4383
  Completed 200 OK in 1733ms (Views: 1732.5ms)
4384
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-29 21:38:29 -0700
4385
+ Processing by Teabag::SpecController#index as */*
4386
+ Parameters: {"suite"=>"foo"}
4387
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (9.7ms)
4388
+ Completed 200 OK in 24ms (Views: 23.9ms)
4389
+ Started GET "/teabag/foo" for 127.0.0.1 at 2012-12-29 22:05:36 -0700
4390
+ Processing by Teabag::SpecController#index as */*
4391
+ Parameters: {"suite"=>"foo"}
4392
+ Rendered /Users/jejacks0n/Projects/teabag/app/views/teabag/spec/index.html.erb (7.5ms)
4393
+ Completed 200 OK in 36ms (Views: 35.4ms)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teabag
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,24 +11,30 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2012-12-29 00:00:00.000000000 Z
14
+ date: 2012-12-30 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: railties
18
18
  requirement: !ruby/object:Gem::Requirement
19
19
  none: false
20
20
  requirements:
21
- - - ~>
21
+ - - ! '>='
22
22
  - !ruby/object:Gem::Version
23
23
  version: 3.2.5
24
+ - - <
25
+ - !ruby/object:Gem::Version
26
+ version: '5'
24
27
  type: :runtime
25
28
  prerelease: false
26
29
  version_requirements: !ruby/object:Gem::Requirement
27
30
  none: false
28
31
  requirements:
29
- - - ~>
32
+ - - ! '>='
30
33
  - !ruby/object:Gem::Version
31
34
  version: 3.2.5
35
+ - - <
36
+ - !ruby/object:Gem::Version
37
+ version: '5'
32
38
  - !ruby/object:Gem::Dependency
33
39
  name: phantomjs.rb
34
40
  requirement: !ruby/object:Gem::Requirement
@@ -690,7 +696,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
690
696
  version: '0'
691
697
  segments:
692
698
  - 0
693
- hash: 1903883753933915586
699
+ hash: -2849809940987288714
694
700
  required_rubygems_version: !ruby/object:Gem::Requirement
695
701
  none: false
696
702
  requirements:
@@ -699,7 +705,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
699
705
  version: '0'
700
706
  segments:
701
707
  - 0
702
- hash: 1903883753933915586
708
+ hash: -2849809940987288714
703
709
  requirements: []
704
710
  rubyforge_project:
705
711
  rubygems_version: 1.8.24