teaspoon 0.7.6 → 0.7.7

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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- OTIyZmJlN2VjZjFiNGQyMWRmMjk3ZTE0YzQ4OTg5MDUzYTA2ZmQ1Yw==
4
+ NzUyYzBlYjhmMjg1MGMzMmUzMTUzZDI0N2MxM2NhZGM2NmI4M2NmMA==
5
5
  data.tar.gz: !binary |-
6
- YmFjZWRmMjdjYmFjNGEyYTU0YzI4Yzc1YTVkMzRiZThjZmM2NzhhOA==
6
+ MWIzMDJiM2NhYzNiZTdmN2YyZjE2NTZhMWEyZGIxODQ1ZjMyMjYzNw==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NmFmMmYwZmFiNWNiOTU2MzE5Mzc2YTk3ZGIyZDU1Zjg5YjJjNWY0YzdkMjA4
10
- NDg1YTJiZjFkMzY4ZDRlYzJhYjAyNjIxOTcyY2NjYjUwMDFkYzkxYmQ4MTc3
11
- MTExYWM2OTM2YjFiY2E4ZTJlYjA5ZThhODJkNjFhNjA1OGFhYzA=
9
+ NDQ0NTljOGIzNDBmMGQ1OGJlOGE0YzUzNTQ2ZjhiNzk4OTE1MTY0ZTdlZjdh
10
+ ZGI3YjZlYTcwYmYzNTI4M2U1NGYzZjY2ZTNiNGUxZWRlN2EwOWY1NWIyZWZi
11
+ ODFmZTY1YmQ1NmEyYTc2NmI0MmUyNWIwNTQ0NjZkZDU0NDRhNDI=
12
12
  data.tar.gz: !binary |-
13
- YzVkOTgyZWM4MGRmMDk1OGUzODhjNGVmMTcxNjhhNWIyMGFlNjkwNDllYzkw
14
- ZmE0Y2E2NDk5YTgxMmY2NjRhZjJkOTQ2NDEyNjEwNjA5OWI1NTI1MTg5YjU1
15
- NDk5NWE3OTU1NjFmNDU4YjI0YzA0NTNlOWYwOTk5YTExNzBjMjk=
13
+ OWVmN2RjNTUzYzcxOWQzZDRmNzdhNTA2MzNjYTkyNDUzOGY3Y2MyNmNkMTAy
14
+ ZWQxMzgxMzg1ZjBmOGQ5ZGQyZjFmZjIwZjQyYzFiNzk5YTc3ZDU1NjI1NjNm
15
+ MDhlZGVjZWQ5ZjJkNDZlMmI5ZTY0OTEyNDc1ZGZhOTcxZDNkYzk=
data/README.md CHANGED
@@ -534,8 +534,18 @@ These configuration directives are applicable only when running via the rake tas
534
534
  </ul>
535
535
  </dd>
536
536
 
537
- </dl>
537
+ <dt> coverage_output_dir </dt><dd>
538
+ Specify directory where coverage reports should be generated.<br/><br/>
539
+
540
+ <b>default:</b> <code>"coverage"</code>
538
541
 
542
+ <ul>
543
+ <li>CLI: -O, --coverage-output-dir DIR</li>
544
+ <li>ENV: COVERAGE_OUTPUT_DIR=coverage</li>
545
+ </ul>
546
+ </dd>
547
+
548
+ </dl>
539
549
 
540
550
  ## Test Frameworks
541
551
 
@@ -14,20 +14,21 @@ require File.expand_path("../../config/environment", __FILE__)
14
14
  # rake teaspoon DRIVER=selenium SUPPRESS_LOG=false
15
15
  Teaspoon.setup do |config|
16
16
  # Driver / Server
17
- #config.driver = "phantomjs" # available: phantomjs, selenium
18
- #config.server = nil # defaults to Rack::Server
17
+ #config.driver = "phantomjs" # available: phantomjs, selenium
18
+ #config.server = nil # defaults to Rack::Server
19
19
 
20
20
  # Behaviors
21
- #config.server_timeout = 20 # timeout for starting the server
22
- #config.server_port = nil # defaults to any open port unless specified
23
- #config.fail_fast = true # abort after the first failing suite
21
+ #config.server_timeout = 20 # timeout for starting the server
22
+ #config.server_port = nil # defaults to any open port unless specified
23
+ #config.fail_fast = true # abort after the first failing suite
24
24
 
25
25
  # Output
26
- #config.formatters = "dot" # available: dot, tap, tap_y, swayze_or_oprah
27
- #config.suppress_log = false # suppress logs coming from console[log/error/debug]
28
- #config.color = true
26
+ #config.formatters = "dot" # available: dot, tap, tap_y, swayze_or_oprah
27
+ #config.suppress_log = false # suppress logs coming from console[log/error/debug]
28
+ #config.color = true
29
29
 
30
30
  # Coverage (requires istanbul -- https://github.com/gotwarlost/istanbul)
31
- #config.coverage = true
32
- #config.coverage_reports = "text,html,cobertura"
31
+ #config.coverage = true
32
+ #config.coverage_reports = "text,html,cobertura"
33
+ #config.coverage_output_dir = "coverage"
33
34
  end
@@ -102,6 +102,10 @@ module Teaspoon
102
102
  @options[:coverage_reports] = reports
103
103
  end
104
104
 
105
+ parser.on("-O", "--coverage-output-dir DIR", "Specify directory where coverage reports should be generated.") do |dir|
106
+ @options[:coverage_output_dir] = dir
107
+ end
108
+
105
109
  parser.separator("\n **** Utility ****\n\n")
106
110
 
107
111
  parser.on("-v", "--version", "Display the version.") do
@@ -13,17 +13,18 @@ module Teaspoon
13
13
  @@driver_cli_options = nil
14
14
 
15
15
  # console runner specific
16
- cattr_accessor :driver, :server_timeout, :server_port, :fail_fast, :formatters, :suppress_log, :color, :coverage, :coverage_reports, :server
17
- @@driver = "phantomjs"
18
- @@server = nil
19
- @@server_port = nil
20
- @@server_timeout = 20
21
- @@fail_fast = true
22
- @@formatters = "dot"
23
- @@suppress_log = false
24
- @@color = true
25
- @@coverage = false
26
- @@coverage_reports = nil
16
+ cattr_accessor :driver, :server_timeout, :server_port, :fail_fast, :formatters, :suppress_log, :color, :coverage, :coverage_reports, :coverage_output_dir, :server
17
+ @@driver = "phantomjs"
18
+ @@server = nil
19
+ @@server_port = nil
20
+ @@server_timeout = 20
21
+ @@fail_fast = true
22
+ @@formatters = "dot"
23
+ @@suppress_log = false
24
+ @@color = true
25
+ @@coverage = false
26
+ @@coverage_reports = nil
27
+ @@coverage_output_dir = "coverage"
27
28
 
28
29
  class Suite
29
30
  attr_accessor :matcher, :helper, :stylesheets, :javascripts, :no_coverage, :boot_partial, :js_config
@@ -87,7 +88,7 @@ module Teaspoon
87
88
  next unless ENV[directive].present?
88
89
  @@configuration.send("#{directive.downcase}=", ENV[directive] == "true")
89
90
  end
90
- %w(DRIVER DRIVER_CLI_OPTIONS SERVER SERVER_TIMEOUT SERVER_PORT FORMATTERS COVERAGE_REPORTS).each do |directive|
91
+ %w(DRIVER DRIVER_CLI_OPTIONS SERVER SERVER_TIMEOUT SERVER_PORT FORMATTERS COVERAGE_REPORTS COVERAGE_OUTPUT_DIR).each do |directive|
91
92
  next unless ENV[directive].present?
92
93
  @@configuration.send("#{directive.downcase}=", ENV[directive])
93
94
  end
@@ -22,7 +22,7 @@ module Teaspoon
22
22
  private
23
23
 
24
24
  def generate_report(input, format)
25
- result = %x{#{executable} report #{format} #{input.shellescape}}
25
+ result = %x{#{executable} report #{format} #{input.shellescape} --dir #{Teaspoon.configuration.coverage_output_dir}}
26
26
  raise "Could not generate coverage report for #{format}" unless $?.exitstatus == 0
27
27
  result.gsub("Done", "").gsub("Using reporter [#{format}]", "").strip
28
28
  end
@@ -1,3 +1,3 @@
1
1
  module Teaspoon
2
- VERSION = "0.7.6"
2
+ VERSION = "0.7.7"
3
3
  end
@@ -793651,3 +793651,472 @@ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-10 09:48:55
793651
793651
 
793652
793652
 
793653
793653
  Started GET "/assets/teaspoon/base/fixture_spec.js?body=1" for 127.0.0.1 at 2013-09-10 09:48:55 -0600
793654
+
793655
+
793656
+ Started GET "/teaspoon/default?reporter=Console" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793657
+ Processing by Teaspoon::SpecController#runner as HTML
793658
+ Parameters: {"reporter"=>"Console", "suite"=>"default"}
793659
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (70.1ms)
793660
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (99.8ms)
793661
+ Completed 200 OK in 153ms (Views: 127.1ms)
793662
+
793663
+
793664
+ Started GET "/assets/teaspoon.css?body=1&instrument=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793665
+
793666
+
793667
+ Started GET "/assets/jasmine-1.3.1.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793668
+
793669
+
793670
+ Started GET "/assets/teaspoon/base/teaspoon.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793671
+
793672
+
793673
+ Started GET "/assets/teaspoon/base/fixture.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793674
+
793675
+
793676
+ Started GET "/assets/teaspoon/base/runner.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793677
+
793678
+
793679
+ Started GET "/assets/teaspoon/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793680
+
793681
+
793682
+ Started GET "/assets/teaspoon/base/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793683
+
793684
+
793685
+ Started GET "/assets/teaspoon/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793686
+
793687
+
793688
+ Started GET "/assets/teaspoon/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793689
+
793690
+
793691
+ Started GET "/assets/teaspoon/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793692
+
793693
+
793694
+ Started GET "/assets/teaspoon/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793695
+
793696
+
793697
+ Started GET "/assets/teaspoon/base/reporters/html/template.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793698
+
793699
+
793700
+ Started GET "/assets/teaspoon/base/reporters/console.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793701
+
793702
+
793703
+ Started GET "/assets/teaspoon/jasmine/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793704
+
793705
+
793706
+ Started GET "/assets/teaspoon/jasmine.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793707
+
793708
+
793709
+ Started GET "/assets/support/json2.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793710
+
793711
+
793712
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793713
+
793714
+
793715
+ Started GET "/assets/teaspoon/base/fixture_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793716
+
793717
+
793718
+ Started GET "/assets/teaspoon/base/reporters/console_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793719
+
793720
+
793721
+ Started GET "/assets/teaspoon/base/reporters/html/base_view_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793722
+
793723
+
793724
+ Started GET "/assets/teaspoon/base/reporters/html/failure_view_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793725
+
793726
+
793727
+ Started GET "/assets/teaspoon/base/reporters/html/progress_view_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793728
+
793729
+
793730
+ Started GET "/assets/teaspoon/base/reporters/html/spec_view_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793731
+
793732
+
793733
+ Started GET "/assets/teaspoon/base/reporters/html/suite_view_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793734
+
793735
+
793736
+ Started GET "/assets/teaspoon/base/runner_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793737
+
793738
+
793739
+ Started GET "/assets/teaspoon/base/teaspoon_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793740
+
793741
+
793742
+ Started GET "/assets/teaspoon/phantomjs/runner_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793743
+
793744
+
793745
+ Started GET "/assets/teaspoon/base/reporters/html_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793746
+
793747
+
793748
+ Started GET "/assets/drivers/phantomjs/runner.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793749
+
793750
+
793751
+ Started GET "/assets/specs/asset_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:10 -0600
793752
+
793753
+
793754
+ Started GET "/teaspoon/jasmine?reporter=Console" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793755
+ Processing by Teaspoon::SpecController#runner as HTML
793756
+ Parameters: {"reporter"=>"Console", "suite"=>"jasmine"}
793757
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (28.2ms)
793758
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (36.3ms)
793759
+ Completed 200 OK in 38ms (Views: 37.3ms)
793760
+
793761
+
793762
+ Started GET "/assets/teaspoon.css?body=1&instrument=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793763
+
793764
+
793765
+ Started GET "/assets/jasmine-1.3.1.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793766
+
793767
+
793768
+ Started GET "/assets/teaspoon/base/teaspoon.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793769
+
793770
+
793771
+ Started GET "/assets/teaspoon/base/runner.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793772
+
793773
+
793774
+ Started GET "/assets/teaspoon/base/fixture.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793775
+
793776
+
793777
+ Started GET "/assets/teaspoon/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793778
+
793779
+
793780
+ Started GET "/assets/teaspoon/base/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793781
+
793782
+
793783
+ Started GET "/assets/teaspoon/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793784
+
793785
+
793786
+ Started GET "/assets/teaspoon/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793787
+
793788
+
793789
+ Started GET "/assets/teaspoon/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793790
+
793791
+
793792
+ Started GET "/assets/teaspoon/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793793
+
793794
+
793795
+ Started GET "/assets/teaspoon/base/reporters/html/template.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793796
+
793797
+
793798
+ Started GET "/assets/teaspoon/base/reporters/console.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793799
+
793800
+
793801
+ Started GET "/assets/teaspoon/jasmine/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793802
+
793803
+
793804
+ Started GET "/assets/teaspoon/jasmine.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793805
+
793806
+
793807
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793808
+
793809
+
793810
+ Started GET "/assets/support/jasmine-jquery.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793811
+
793812
+
793813
+ Started GET "/assets/support/json2.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793814
+
793815
+
793816
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793817
+
793818
+
793819
+ Started GET "/assets/jasmine_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793820
+
793821
+
793822
+ Started GET "/assets/teaspoon/jasmine/fixture_jspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793823
+
793824
+
793825
+ Started GET "/assets/teaspoon/jasmine/models_jspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793826
+
793827
+
793828
+ Started GET "/assets/teaspoon/jasmine/reporters/html_jspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793829
+
793830
+
793831
+ Started GET "/assets/teaspoon/jasmine/runner_jspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793832
+
793833
+
793834
+ Started GET "/assets/teaspoon/jasmine/spec_jspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793835
+
793836
+
793837
+ Started GET "/teaspoon/fixtures/fixture.html" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793838
+ Processing by Teaspoon::SpecController#fixtures as HTML
793839
+ Parameters: {"filename"=>"fixture"}
793840
+ Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.html.haml (1.7ms)
793841
+ Completed 200 OK in 3ms (Views: 2.5ms)
793842
+
793843
+
793844
+ Started GET "/teaspoon/fixtures/fixture.json" for 127.0.0.1 at 2013-09-25 14:18:12 -0600
793845
+ Processing by Teaspoon::SpecController#fixtures as JSON
793846
+ Parameters: {"filename"=>"fixture"}
793847
+ Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.json (0.4ms)
793848
+ Completed 200 OK in 2ms (Views: 1.2ms)
793849
+
793850
+
793851
+ Started GET "/teaspoon/mocha?reporter=Console" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793852
+ Processing by Teaspoon::SpecController#runner as HTML
793853
+ Parameters: {"reporter"=>"Console", "suite"=>"mocha"}
793854
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (28.2ms)
793855
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (55.3ms)
793856
+ Completed 200 OK in 57ms (Views: 56.6ms)
793857
+
793858
+
793859
+ Started GET "/assets/teaspoon.css?body=1&instrument=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793860
+
793861
+
793862
+ Started GET "/assets/mocha-1.10.0.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793863
+
793864
+
793865
+ Started GET "/assets/teaspoon/base/teaspoon.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793866
+
793867
+
793868
+ Started GET "/assets/teaspoon/base/fixture.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793869
+
793870
+
793871
+ Started GET "/assets/teaspoon/base/runner.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793872
+
793873
+
793874
+ Started GET "/assets/teaspoon/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793875
+
793876
+
793877
+ Started GET "/assets/teaspoon/base/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793878
+
793879
+
793880
+ Started GET "/assets/teaspoon/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793881
+
793882
+
793883
+ Started GET "/assets/teaspoon/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793884
+
793885
+
793886
+ Started GET "/assets/teaspoon/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793887
+
793888
+
793889
+ Started GET "/assets/teaspoon/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793890
+
793891
+
793892
+ Started GET "/assets/teaspoon/base/reporters/html/template.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793893
+
793894
+
793895
+ Started GET "/assets/teaspoon/base/reporters/console.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793896
+
793897
+
793898
+ Started GET "/assets/teaspoon/mocha/reporters/console.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793899
+
793900
+
793901
+ Started GET "/assets/teaspoon/mocha/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793902
+
793903
+
793904
+ Started GET "/assets/teaspoon/mocha.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793905
+
793906
+
793907
+ Started GET "/assets/support/sinon.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793908
+
793909
+
793910
+ Started GET "/assets/support/expect.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793911
+
793912
+
793913
+ Started GET "/assets/support/json2.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793914
+
793915
+
793916
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793917
+
793918
+
793919
+ Started GET "/assets/mocha_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793920
+
793921
+
793922
+ Started GET "/assets/teaspoon/mocha/fixture_mspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793923
+
793924
+
793925
+ Started GET "/assets/teaspoon/mocha/models_mspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793926
+
793927
+
793928
+ Started GET "/assets/teaspoon/mocha/reporters/console_mspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793929
+
793930
+
793931
+ Started GET "/assets/teaspoon/mocha/reporters/html_mspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793932
+
793933
+
793934
+ Started GET "/assets/teaspoon/mocha/runner_mspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793935
+
793936
+
793937
+ Started GET "/assets/teaspoon/mocha/spec_mspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793938
+
793939
+
793940
+ Started GET "/teaspoon/fixtures/fixture.html" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793941
+ Processing by Teaspoon::SpecController#fixtures as HTML
793942
+ Parameters: {"filename"=>"fixture"}
793943
+ Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.html.haml (1.6ms)
793944
+ Completed 200 OK in 3ms (Views: 2.5ms)
793945
+
793946
+
793947
+ Started GET "/teaspoon/fixtures/fixture.json" for 127.0.0.1 at 2013-09-25 14:18:13 -0600
793948
+ Processing by Teaspoon::SpecController#fixtures as JSON
793949
+ Parameters: {"filename"=>"fixture"}
793950
+ Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.json (0.3ms)
793951
+ Completed 200 OK in 2ms (Views: 1.1ms)
793952
+
793953
+
793954
+ Started GET "/teaspoon/qunit?reporter=Console" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793955
+ Processing by Teaspoon::SpecController#runner as HTML
793956
+ Parameters: {"reporter"=>"Console", "suite"=>"qunit"}
793957
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (27.4ms)
793958
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (53.0ms)
793959
+ Completed 200 OK in 54ms (Views: 54.0ms)
793960
+
793961
+
793962
+ Started GET "/assets/teaspoon.css?body=1&instrument=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793963
+
793964
+
793965
+ Started GET "/assets/qunit-1.11.0.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793966
+
793967
+
793968
+ Started GET "/assets/teaspoon/base/teaspoon.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793969
+
793970
+
793971
+ Started GET "/assets/teaspoon/base/fixture.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793972
+
793973
+
793974
+ Started GET "/assets/teaspoon/base/runner.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793975
+
793976
+
793977
+ Started GET "/assets/teaspoon/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793978
+
793979
+
793980
+ Started GET "/assets/teaspoon/base/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793981
+
793982
+
793983
+ Started GET "/assets/teaspoon/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793984
+
793985
+
793986
+ Started GET "/assets/teaspoon/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793987
+
793988
+
793989
+ Started GET "/assets/teaspoon/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793990
+
793991
+
793992
+ Started GET "/assets/teaspoon/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793993
+
793994
+
793995
+ Started GET "/assets/teaspoon/base/reporters/html/template.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793996
+
793997
+
793998
+ Started GET "/assets/teaspoon/base/reporters/console.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
793999
+
794000
+
794001
+ Started GET "/assets/teaspoon/qunit/reporters/console.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794002
+
794003
+
794004
+ Started GET "/assets/teaspoon/qunit/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794005
+
794006
+
794007
+ Started GET "/assets/teaspoon/qunit.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794008
+
794009
+
794010
+ Started GET "/assets/support/sinon.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794011
+
794012
+
794013
+ Started GET "/assets/qunit_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794014
+
794015
+
794016
+ Started GET "/assets/teaspoon/qunit/fixture_test.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794017
+
794018
+
794019
+ Started GET "/assets/teaspoon/qunit/reporters/console_test.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794020
+
794021
+
794022
+ Started GET "/assets/teaspoon/qunit/models_test.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794023
+
794024
+
794025
+ Started GET "/assets/teaspoon/qunit/reporters/html/failure_view_test.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794026
+
794027
+
794028
+ Started GET "/assets/teaspoon/qunit/reporters/html/spec_view_test.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794029
+
794030
+
794031
+ Started GET "/assets/teaspoon/qunit/reporters/html/suite_view_test.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794032
+
794033
+
794034
+ Started GET "/assets/teaspoon/qunit/reporters/html_test.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794035
+
794036
+
794037
+ Started GET "/assets/teaspoon/qunit/runner_test.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794038
+
794039
+
794040
+ Started GET "/teaspoon/fixtures/fixture.html" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794041
+ Processing by Teaspoon::SpecController#fixtures as HTML
794042
+ Parameters: {"filename"=>"fixture"}
794043
+ Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.html.haml (1.5ms)
794044
+ Completed 200 OK in 3ms (Views: 2.3ms)
794045
+
794046
+
794047
+ Started GET "/teaspoon/fixtures/fixture.json" for 127.0.0.1 at 2013-09-25 14:18:16 -0600
794048
+ Processing by Teaspoon::SpecController#fixtures as JSON
794049
+ Parameters: {"filename"=>"fixture"}
794050
+ Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.json (0.3ms)
794051
+ Completed 200 OK in 1ms (Views: 1.0ms)
794052
+
794053
+
794054
+ Started GET "/teaspoon/angular?reporter=Console" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794055
+ Processing by Teaspoon::SpecController#runner as HTML
794056
+ Parameters: {"reporter"=>"Console", "suite"=>"angular"}
794057
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (9.3ms)
794058
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (67.6ms)
794059
+ Completed 200 OK in 69ms (Views: 68.7ms)
794060
+
794061
+
794062
+ Started GET "/assets/teaspoon.css?body=1&instrument=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794063
+
794064
+
794065
+ Started GET "/assets/angular-scenario-1.0.5.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794066
+
794067
+
794068
+ Started GET "/assets/teaspoon/base/teaspoon.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794069
+
794070
+
794071
+ Started GET "/assets/teaspoon/base/runner.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794072
+
794073
+
794074
+ Started GET "/assets/teaspoon/base/fixture.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794075
+
794076
+
794077
+ Started GET "/assets/teaspoon/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794078
+
794079
+
794080
+ Started GET "/assets/teaspoon/base/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794081
+
794082
+
794083
+ Started GET "/assets/teaspoon/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794084
+
794085
+
794086
+ Started GET "/assets/teaspoon/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794087
+
794088
+
794089
+ Started GET "/assets/teaspoon/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794090
+
794091
+
794092
+ Started GET "/assets/teaspoon/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794093
+
794094
+
794095
+ Started GET "/assets/teaspoon/base/reporters/html/template.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794096
+
794097
+
794098
+ Started GET "/assets/teaspoon/base/reporters/console.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794099
+
794100
+
794101
+ Started GET "/assets/teaspoon/angular/reporters/console.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794102
+
794103
+
794104
+ Started GET "/assets/teaspoon/angular/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794105
+
794106
+
794107
+ Started GET "/assets/teaspoon/angular.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794108
+
794109
+
794110
+ Started GET "/assets/support/json2.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794111
+
794112
+
794113
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794114
+
794115
+
794116
+ Started GET "/assets/angular_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794117
+
794118
+
794119
+ Started GET "/assets/teaspoon/angular/models_aspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
794120
+
794121
+
794122
+ Started GET "/assets/teaspoon/angular/reporters/html_aspec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:17 -0600
@@ -24780,3 +24780,92 @@ Processing by Teaspoon::SpecController#fixtures as HTML
24780
24780
  Parameters: {"filename"=>"fixture"}
24781
24781
  Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.html.haml (1.7ms)
24782
24782
  Completed 200 OK in 3ms (Views: 2.6ms)
24783
+ Started GET "/teaspoon/integration?reporter=HTML" for 127.0.0.1 at 2013-09-25 14:17:34 -0600
24784
+ Processing by Teaspoon::SpecController#runner as HTML
24785
+ Parameters: {"reporter"=>"HTML", "suite"=>"integration"}
24786
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (405.7ms)
24787
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (519.6ms)
24788
+ Completed 200 OK in 557ms (Views: 530.2ms)
24789
+ Started GET "/assets/teaspoon.css?body=1&instrument=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24790
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24791
+ Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24792
+ Started GET "/assets/support/json2.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24793
+ Started GET "/assets/integration/integration.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24794
+ Started GET "/assets/turbolinks_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24795
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24796
+ Started GET "/assets/integration/integration_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24797
+ Started GET "/assets/integration/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24798
+ Started GET "/teaspoon/fixtures/fixture.html" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24799
+ Processing by Teaspoon::SpecController#fixtures as HTML
24800
+ Parameters: {"filename"=>"fixture"}
24801
+ Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.html.haml (1.7ms)
24802
+ Completed 200 OK in 4ms (Views: 3.2ms)
24803
+ Started GET "/teaspoon/integration?grep=Integration%20tests%20allows%20failing%20specs." for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24804
+ Processing by Teaspoon::SpecController#runner as HTML
24805
+ Parameters: {"grep"=>"Integration tests allows failing specs.", "suite"=>"integration"}
24806
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (1.4ms)
24807
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (2.5ms)
24808
+ Completed 200 OK in 3ms (Views: 2.9ms)
24809
+ Started GET "/assets/teaspoon.css?body=1&instrument=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24810
+ Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24811
+ Started GET "/assets/turbolinks_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24812
+ Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24813
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24814
+ Started GET "/assets/support/json2.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24815
+ Started GET "/assets/integration/integration.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24816
+ Started GET "/assets/integration/integration_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24817
+ Started GET "/assets/integration/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:17:35 -0600
24818
+ Started GET "/teaspoon/foo" for 127.0.0.1 at 2013-09-25 14:17:36 -0600
24819
+ Processing by Teaspoon::SpecController#runner as */*
24820
+ Parameters: {"suite"=>"foo"}
24821
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (41.2ms)
24822
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (47.9ms)
24823
+ Completed 200 OK in 52ms (Views: 51.2ms)
24824
+ Started GET "/teaspoon/integration?reporter=HTML" for 127.0.0.1 at 2013-09-25 14:18:04 -0600
24825
+ Processing by Teaspoon::SpecController#runner as HTML
24826
+ Parameters: {"reporter"=>"HTML", "suite"=>"integration"}
24827
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (5.0ms)
24828
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (6.5ms)
24829
+ Completed 200 OK in 8ms (Views: 7.0ms)
24830
+ Started GET "/assets/teaspoon.css?body=1&instrument=1" for 127.0.0.1 at 2013-09-25 14:18:04 -0600
24831
+ Started GET "/assets/integration/integration.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:04 -0600
24832
+ Started GET "/assets/integration/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:04 -0600
24833
+ Started GET "/assets/teaspoon-jasmine.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:04 -0600
24834
+ Started GET "/assets/integration/integration_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:04 -0600
24835
+ Started GET "/teaspoon/fixtures/fixture.html" for 127.0.0.1 at 2013-09-25 14:18:04 -0600
24836
+ Processing by Teaspoon::SpecController#fixtures as HTML
24837
+ Parameters: {"filename"=>"fixture"}
24838
+ Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.html.haml (1.8ms)
24839
+ Completed 200 OK in 3ms (Views: 2.7ms)
24840
+ Started GET "/teaspoon/default?file%5B%5D=app/assets/javascripts/integration/integration_spec.coffee&reporter=Console" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24841
+ Processing by Teaspoon::SpecController#runner as HTML
24842
+ Parameters: {"file"=>["app/assets/javascripts/integration/integration_spec.coffee"], "reporter"=>"Console", "suite"=>"default"}
24843
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/_standard.html.erb (6.7ms)
24844
+ Rendered /Users/jejacks0n/Projects/teaspoon/app/views/teaspoon/spec/runner.html.erb (29.7ms)
24845
+ Completed 200 OK in 83ms (Views: 56.2ms)
24846
+ Started GET "/assets/teaspoon.css?body=1&instrument=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24847
+ Started GET "/assets/jasmine-1.3.1.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24848
+ Started GET "/assets/teaspoon/base/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24849
+ Started GET "/assets/teaspoon/base/runner.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24850
+ Started GET "/assets/teaspoon/base/teaspoon.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24851
+ Started GET "/assets/teaspoon/base/fixture.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24852
+ Started GET "/assets/teaspoon/base/reporters/html/base_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24853
+ Started GET "/assets/teaspoon/base/reporters/html/progress_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24854
+ Started GET "/assets/teaspoon/base/reporters/html/spec_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24855
+ Started GET "/assets/teaspoon/base/reporters/html/failure_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24856
+ Started GET "/assets/teaspoon/base/reporters/html/suite_view.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24857
+ Started GET "/assets/teaspoon/base/reporters/html/template.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24858
+ Started GET "/assets/teaspoon/base/reporters/console.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24859
+ Started GET "/assets/teaspoon/jasmine.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24860
+ Started GET "/assets/teaspoon/jasmine/reporters/html.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24861
+ Started GET "/assets/support/json2.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24862
+ Started GET "/assets/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24863
+ Started GET "/assets/integration/integration_spec.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24864
+ Started GET "/assets/integration/integration.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24865
+ Started GET "/assets/integration/spec_helper.js?body=1" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24866
+ Started GET "/teaspoon/fixtures/fixture.html" for 127.0.0.1 at 2013-09-25 14:18:07 -0600
24867
+ Processing by Teaspoon::SpecController#fixtures as HTML
24868
+ Parameters: {"filename"=>"fixture"}
24869
+ Rendered /Users/jejacks0n/Projects/teaspoon/spec/javascripts/fixtures/fixture.html.haml (1.5ms)
24870
+ Completed 200 OK in 3ms (Views: 2.3ms)
24871
+ Started GET "/assets/instrumented2.js?instrument=false" for 127.0.0.1 at 2013-09-25 14:18:08 -0600
@@ -61,6 +61,7 @@ describe Teaspoon::Configuration do
61
61
  expect(subject.suites).to be_a(Hash)
62
62
  expect(subject.coverage).to eq(false)
63
63
  expect(subject.coverage_reports).to eq(["text-summary"])
64
+ expect(subject.coverage_output_dir).to eq("coverage")
64
65
  expect(subject.server).to be_nil
65
66
  end
66
67
 
data/spec/teaspoon_env.rb CHANGED
@@ -14,19 +14,20 @@ require File.expand_path("../dummy/config/environment", __FILE__)
14
14
  # rake teaspoon DRIVER=selenium SUPPRESS_LOG=false
15
15
  Teaspoon.setup do |config|
16
16
  # Driver
17
- #config.driver = "phantomjs" # available: phantomjs, selenium
17
+ #config.driver = "phantomjs" # available: phantomjs, selenium
18
18
 
19
19
  # Behaviors
20
- #config.server_timeout = 20 # timeout for starting the server
21
- #config.server_port = nil # defaults to any open port unless specified
22
- #config.fail_fast = true # abort after the first failing suite
20
+ #config.server_timeout = 20 # timeout for starting the server
21
+ #config.server_port = nil # defaults to any open port unless specified
22
+ #config.fail_fast = true # abort after the first failing suite
23
23
 
24
24
  # Output
25
- #config.formatters = "dot" # available: dot, tap_y, swayze_or_oprah
26
- #config.suppress_log = false # suppress logs coming from console[log/error/debug]
27
- #config.color = true
25
+ #config.formatters = "dot" # available: dot, tap_y, swayze_or_oprah
26
+ #config.suppress_log = false # suppress logs coming from console[log/error/debug]
27
+ #config.color = true
28
28
 
29
29
  # Coverage (requires istanbul -- https://github.com/gotwarlost/istanbul)
30
- #config.coverage = true
31
- #config.coverage_reports = "text-summary,text,html,cobertura"
30
+ #config.coverage = true
31
+ #config.coverage_reports = "text-summary,text,html,cobertura"
32
+ #config.coverage_output_dir = "coverage"
32
33
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: teaspoon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.6
4
+ version: 0.7.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - jejacks0n
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-09-14 00:00:00.000000000 Z
13
+ date: 2013-09-25 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: railties
@@ -990,6 +990,7 @@ files:
990
990
  - spec/dummy/tmp/cache/assets/test/sprockets/07beacb160854d50a8348e861c26f172
991
991
  - spec/dummy/tmp/cache/assets/test/sprockets/087d4a99adae6d6972937a2e57e93504
992
992
  - spec/dummy/tmp/cache/assets/test/sprockets/09ebedd4feaad33be1acf8d1c5d2570f
993
+ - spec/dummy/tmp/cache/assets/test/sprockets/0cb62bf3e35bb2edb0722b806d53fcbd
993
994
  - spec/dummy/tmp/cache/assets/test/sprockets/0d17405b5806711c7cf261e51ea6df82
994
995
  - spec/dummy/tmp/cache/assets/test/sprockets/0e6215d8ea6200c886a51d5ecf674654
995
996
  - spec/dummy/tmp/cache/assets/test/sprockets/0f6a3438734a9a1edb0e0675d9d0377d
@@ -1017,8 +1018,10 @@ files:
1017
1018
  - spec/dummy/tmp/cache/assets/test/sprockets/4c75aaa6cb44f86fb775481119bb8f94
1018
1019
  - spec/dummy/tmp/cache/assets/test/sprockets/53b39eb9f52812779e5702977cca7b81
1019
1020
  - spec/dummy/tmp/cache/assets/test/sprockets/56b12ffb63cdb65bb22fdfb17c3e7d3f
1021
+ - spec/dummy/tmp/cache/assets/test/sprockets/5993c1154104e5cd8563cfb4b60cae4d
1020
1022
  - spec/dummy/tmp/cache/assets/test/sprockets/5a8fd092f1b0edb02b2ea0e8b2fb3f31
1021
1023
  - spec/dummy/tmp/cache/assets/test/sprockets/60c44252744654a6be1f962c64f7e8c0
1024
+ - spec/dummy/tmp/cache/assets/test/sprockets/61c9b2207a40b436d0b43fa74dc61de3
1022
1025
  - spec/dummy/tmp/cache/assets/test/sprockets/65ca6b356cd31cd9549ce4abbe133c46
1023
1026
  - spec/dummy/tmp/cache/assets/test/sprockets/6953ed07811a21dbf3e2e6fe3adf3887
1024
1027
  - spec/dummy/tmp/cache/assets/test/sprockets/6c0b1513003f61e4ca60524ff2b1cb2f
@@ -1035,6 +1038,7 @@ files:
1035
1038
  - spec/dummy/tmp/cache/assets/test/sprockets/85eae8c3c76d6df51cf4d5b4c4afda3c
1036
1039
  - spec/dummy/tmp/cache/assets/test/sprockets/86cfa20850f26cac6060fe7821089252
1037
1040
  - spec/dummy/tmp/cache/assets/test/sprockets/8783cd1e0a84f6f66fca5cf03c55ee5c
1041
+ - spec/dummy/tmp/cache/assets/test/sprockets/886cfaeb9a8c4b0e02e6e33078e433fe
1038
1042
  - spec/dummy/tmp/cache/assets/test/sprockets/8bae8adecebebb91c6d78778efc9a85f
1039
1043
  - spec/dummy/tmp/cache/assets/test/sprockets/9af7eb9fe427f90f4316402cea5fab7c
1040
1044
  - spec/dummy/tmp/cache/assets/test/sprockets/9b97a5c5521043c8454271a8a18612b2
@@ -1070,6 +1074,7 @@ files:
1070
1074
  - spec/dummy/tmp/cache/assets/test/sprockets/ed0c0b32e435f3a6df66b33bb61a30c2
1071
1075
  - spec/dummy/tmp/cache/assets/test/sprockets/f0f2b623b42840839e37f5ed055f5482
1072
1076
  - spec/dummy/tmp/cache/assets/test/sprockets/f7ecd1dcdcdd17d4cbd224f2803826bf
1077
+ - spec/dummy/tmp/cache/assets/test/sprockets/fdd8bd02dd605085c128a97e9b40a93c
1073
1078
  - spec/dummy/tmp/cache/assets/test/sprockets/ff5c7362c733f8187bf4fa1b56567fff
1074
1079
  - spec/features/console_reporter_spec.rb
1075
1080
  - spec/features/html_reporter_spec.rb
@@ -2002,6 +2007,7 @@ test_files:
2002
2007
  - spec/dummy/tmp/cache/assets/test/sprockets/07beacb160854d50a8348e861c26f172
2003
2008
  - spec/dummy/tmp/cache/assets/test/sprockets/087d4a99adae6d6972937a2e57e93504
2004
2009
  - spec/dummy/tmp/cache/assets/test/sprockets/09ebedd4feaad33be1acf8d1c5d2570f
2010
+ - spec/dummy/tmp/cache/assets/test/sprockets/0cb62bf3e35bb2edb0722b806d53fcbd
2005
2011
  - spec/dummy/tmp/cache/assets/test/sprockets/0d17405b5806711c7cf261e51ea6df82
2006
2012
  - spec/dummy/tmp/cache/assets/test/sprockets/0e6215d8ea6200c886a51d5ecf674654
2007
2013
  - spec/dummy/tmp/cache/assets/test/sprockets/0f6a3438734a9a1edb0e0675d9d0377d
@@ -2029,8 +2035,10 @@ test_files:
2029
2035
  - spec/dummy/tmp/cache/assets/test/sprockets/4c75aaa6cb44f86fb775481119bb8f94
2030
2036
  - spec/dummy/tmp/cache/assets/test/sprockets/53b39eb9f52812779e5702977cca7b81
2031
2037
  - spec/dummy/tmp/cache/assets/test/sprockets/56b12ffb63cdb65bb22fdfb17c3e7d3f
2038
+ - spec/dummy/tmp/cache/assets/test/sprockets/5993c1154104e5cd8563cfb4b60cae4d
2032
2039
  - spec/dummy/tmp/cache/assets/test/sprockets/5a8fd092f1b0edb02b2ea0e8b2fb3f31
2033
2040
  - spec/dummy/tmp/cache/assets/test/sprockets/60c44252744654a6be1f962c64f7e8c0
2041
+ - spec/dummy/tmp/cache/assets/test/sprockets/61c9b2207a40b436d0b43fa74dc61de3
2034
2042
  - spec/dummy/tmp/cache/assets/test/sprockets/65ca6b356cd31cd9549ce4abbe133c46
2035
2043
  - spec/dummy/tmp/cache/assets/test/sprockets/6953ed07811a21dbf3e2e6fe3adf3887
2036
2044
  - spec/dummy/tmp/cache/assets/test/sprockets/6c0b1513003f61e4ca60524ff2b1cb2f
@@ -2047,6 +2055,7 @@ test_files:
2047
2055
  - spec/dummy/tmp/cache/assets/test/sprockets/85eae8c3c76d6df51cf4d5b4c4afda3c
2048
2056
  - spec/dummy/tmp/cache/assets/test/sprockets/86cfa20850f26cac6060fe7821089252
2049
2057
  - spec/dummy/tmp/cache/assets/test/sprockets/8783cd1e0a84f6f66fca5cf03c55ee5c
2058
+ - spec/dummy/tmp/cache/assets/test/sprockets/886cfaeb9a8c4b0e02e6e33078e433fe
2050
2059
  - spec/dummy/tmp/cache/assets/test/sprockets/8bae8adecebebb91c6d78778efc9a85f
2051
2060
  - spec/dummy/tmp/cache/assets/test/sprockets/9af7eb9fe427f90f4316402cea5fab7c
2052
2061
  - spec/dummy/tmp/cache/assets/test/sprockets/9b97a5c5521043c8454271a8a18612b2
@@ -2082,6 +2091,7 @@ test_files:
2082
2091
  - spec/dummy/tmp/cache/assets/test/sprockets/ed0c0b32e435f3a6df66b33bb61a30c2
2083
2092
  - spec/dummy/tmp/cache/assets/test/sprockets/f0f2b623b42840839e37f5ed055f5482
2084
2093
  - spec/dummy/tmp/cache/assets/test/sprockets/f7ecd1dcdcdd17d4cbd224f2803826bf
2094
+ - spec/dummy/tmp/cache/assets/test/sprockets/fdd8bd02dd605085c128a97e9b40a93c
2085
2095
  - spec/dummy/tmp/cache/assets/test/sprockets/ff5c7362c733f8187bf4fa1b56567fff
2086
2096
  - spec/features/console_reporter_spec.rb
2087
2097
  - spec/features/html_reporter_spec.rb