emcee 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f0dce26ce6fb968980aa1fe54978db2c62d922c5
4
- data.tar.gz: 7dbd9b3f32491b7ffb217341cff9aaeca4ab84ea
3
+ metadata.gz: 1e7df9a77ef258840c1a811639a644afa7ae1f2c
4
+ data.tar.gz: 89f10f8439283386a3e4ffdf31e22076ae9655f5
5
5
  SHA512:
6
- metadata.gz: 5f12f4d7b31e34baff8aa814e93f133fef8f9f155a52c3660676686065f883bf988fe25b64a399ed0b8d980f337a6a5bb14c69470daa2fa4846d7f6b0717abf1
7
- data.tar.gz: f841385a5fd38465dafc4f42492895d576d1b70b38a32bc872b8c7724d641a9b009f2165641e83aef8852971dfdb8bf1beb463e6f65f38539ca4010c90a39b9e
6
+ metadata.gz: b75a9fb8517d1aa780565aab44a6ecaa00fe8fcb21f919672fa2e2fc7486ea5df11646ee74bdc2fa8dfdd4c290c1aac8b3885dedb5a887621288d08cc0d6f0f1
7
+ data.tar.gz: be3eb998ddac383574b88a0d3990ec4301d1d78d294b35eee8b04d9e6c1c731996f0d40a79b68300f438777285c419762394fcb761a3efa9c27f5158232f8721
@@ -1,17 +1,19 @@
1
1
  module Emcee
2
- # HtmlCompressor is a very basic compressor that removes blank lines and
3
- # comments from an HTML file.
4
- class HtmlCompressor
5
- HTML_COMMENTS = /\<!\s*--(?:.*?)(?:--\s*\>)/m
6
- JS_MULTI_COMMENTS = /\/\*(?:.*?)\*\//m
7
- JS_COMMENTS = /\/\/.*$/
8
- BLANK_LINES = /^[\s]*$\n/
2
+ module Compressors
3
+ # HtmlCompressor is a very basic compressor that removes blank lines and
4
+ # comments from an HTML file.
5
+ class HtmlCompressor
6
+ HTML_COMMENTS = /\<!\s*--(?:.*?)(?:--\s*\>)/m
7
+ JS_MULTI_COMMENTS = /\/\*(?:.*?)\*\//m
8
+ JS_COMMENTS = /\/\/.*$/
9
+ BLANK_LINES = /^[\s]*$\n/
9
10
 
10
- def compress(string)
11
- ops = [HTML_COMMENTS, JS_MULTI_COMMENTS, JS_COMMENTS, BLANK_LINES]
11
+ def compress(string)
12
+ ops = [HTML_COMMENTS, JS_MULTI_COMMENTS, JS_COMMENTS, BLANK_LINES]
12
13
 
13
- ops.reduce(string) do |output, op|
14
- output.gsub(op, "")
14
+ ops.reduce(string) do |output, op|
15
+ output.gsub(op, "")
16
+ end
15
17
  end
16
18
  end
17
19
  end
@@ -0,0 +1,37 @@
1
+ require 'nokogiri'
2
+ require 'uri'
3
+
4
+ module Emcee
5
+ module PostProcessors
6
+ # ImportProcessor scans a file for html imports and adds them to the current
7
+ # required assets.
8
+ class ImportProcessor
9
+ def initialize(context)
10
+ @context = context
11
+ @directory = File.dirname(context.pathname)
12
+ end
13
+
14
+ def process(data)
15
+ doc = Nokogiri::HTML.fragment(data)
16
+ require_assets(doc)
17
+ remove_imports(doc)
18
+ URI.unescape(doc.to_s.lstrip)
19
+ end
20
+
21
+ private
22
+
23
+ def require_assets(doc)
24
+ doc.css("link[rel='import']").each do |node|
25
+ path = File.absolute_path(node.attribute("href"), @directory)
26
+ @context.require_asset(path)
27
+ end
28
+ end
29
+
30
+ def remove_imports(doc)
31
+ doc.css("link[rel='import']").each do |node|
32
+ node.remove
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,42 @@
1
+ require 'nokogiri'
2
+ require 'uri'
3
+
4
+ module Emcee
5
+ module PostProcessors
6
+ # ScriptProcessor scans a document for external script references and inlines
7
+ # them into the current document.
8
+ class ScriptProcessor
9
+ def initialize(context)
10
+ @context = context
11
+ @directory = File.dirname(context.pathname)
12
+ end
13
+
14
+ def process(data)
15
+ doc = Nokogiri::HTML.fragment(data)
16
+ inline_scripts(doc)
17
+ URI.unescape(doc.to_s)
18
+ end
19
+
20
+ private
21
+
22
+ def inline_scripts(doc)
23
+ doc.css("script[src]").each do |node|
24
+ path = absolute_path(node.attribute("src"))
25
+ content = @context.evaluate(path)
26
+ script = create_script(doc, content)
27
+ node.replace(script)
28
+ end
29
+ end
30
+
31
+ def absolute_path(path)
32
+ File.absolute_path(path, @directory)
33
+ end
34
+
35
+ def create_script(doc, content)
36
+ node = Nokogiri::XML::Node.new("script", doc)
37
+ node.content = content
38
+ node
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,42 @@
1
+ require 'nokogiri'
2
+ require 'uri'
3
+
4
+ module Emcee
5
+ module PostProcessors
6
+ # StylesheetProcessor scans a document for external stylesheet references and
7
+ # inlines them into the current document.
8
+ class StylesheetProcessor
9
+ def initialize(context)
10
+ @context = context
11
+ @directory = File.dirname(context.pathname)
12
+ end
13
+
14
+ def process(data)
15
+ doc = Nokogiri::HTML.fragment(data)
16
+ inline_styles(doc)
17
+ URI.unescape(doc.to_s)
18
+ end
19
+
20
+ private
21
+
22
+ def inline_styles(doc)
23
+ doc.css("link[rel='stylesheet']").each do |node|
24
+ path = absolute_path(node.attribute("href"))
25
+ content = @context.evaluate(path)
26
+ style = create_style(doc, content)
27
+ node.replace(style)
28
+ end
29
+ end
30
+
31
+ def absolute_path(path)
32
+ File.absolute_path(path, @directory)
33
+ end
34
+
35
+ def create_style(doc, content)
36
+ node = Nokogiri::XML::Node.new("style", doc)
37
+ node.content = content
38
+ node
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,35 @@
1
+ module Emcee
2
+ module PreProcessors
3
+ # The `DirectiveProcessor` is responsible for parsing and evaluating
4
+ # directive comments in a source file.
5
+ class DirectiveProcessor < Sprockets::DirectiveProcessor
6
+ # Matches the entire header/directive block. This is everything from the
7
+ # top of the file, enclosed in html comments.
8
+ HEADER_PATTERN = /\A((?m:\s*)(<!--(?m:.*?)-->))+/
9
+
10
+ # Implement `render` so that it uses our own header pattern.
11
+ def render(context, locals)
12
+ @context = context
13
+ @pathname = context.pathname
14
+ @directory = File.dirname(@pathname)
15
+
16
+ @header = data[HEADER_PATTERN, 0] || ""
17
+ @body = $' || data
18
+ # Ensure body ends in a new line
19
+ @body += "\n" if @body != "" && @body !~ /\n\Z/m
20
+
21
+ @included_pathnames = []
22
+
23
+ @result = ""
24
+ @result.force_encoding(body.encoding)
25
+
26
+ @has_written_body = false
27
+
28
+ process_directives
29
+ process_source
30
+
31
+ @result
32
+ end
33
+ end
34
+ end
35
+ end
data/lib/emcee/railtie.rb CHANGED
@@ -1,7 +1,7 @@
1
- require "emcee/processors/directive_processor"
2
- require "emcee/processors/import_processor"
3
- require "emcee/processors/script_processor"
4
- require "emcee/processors/stylesheet_processor"
1
+ require "emcee/pre_processors/directive_processor"
2
+ require "emcee/post_processors/import_processor"
3
+ require "emcee/post_processors/script_processor"
4
+ require "emcee/post_processors/stylesheet_processor"
5
5
  require "emcee/compressors/html_compressor"
6
6
 
7
7
  module Emcee
@@ -12,24 +12,24 @@ module Emcee
12
12
 
13
13
  initializer :add_preprocessors do |app|
14
14
  app.assets.register_mime_type "text/html", ".html"
15
- app.assets.register_preprocessor "text/html", DirectiveProcessor
15
+ app.assets.register_preprocessor "text/html", Emcee::PreProcessors::DirectiveProcessor
16
16
  end
17
17
 
18
18
  initializer :add_postprocessors do |app|
19
19
  app.assets.register_postprocessor "text/html", :import_processor do |context, data|
20
- ImportProcessor.new(context).process(data)
20
+ Emcee::PostProcessors::ImportProcessor.new(context).process(data)
21
21
  end
22
22
  app.assets.register_postprocessor "text/html", :script_processor do |context, data|
23
- ScriptProcessor.new(context).process(data)
23
+ Emcee::PostProcessors::ScriptProcessor.new(context).process(data)
24
24
  end
25
25
  app.assets.register_postprocessor "text/html", :stylesheet_processor do |context, data|
26
- StylesheetProcessor.new(context).process(data)
26
+ Emcee::PostProcessors::StylesheetProcessor.new(context).process(data)
27
27
  end
28
28
  end
29
29
 
30
30
  initializer :add_compressors do |app|
31
31
  app.assets.register_bundle_processor "text/html", :html_compressor do |context, data|
32
- HtmlCompressor.new.compress(data)
32
+ Emcee::Compressors::HtmlCompressor.new.compress(data)
33
33
  end
34
34
  end
35
35
  end
data/lib/emcee/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Emcee
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
@@ -2,7 +2,7 @@ require 'test_helper'
2
2
 
3
3
  class CompressorsTest < ActiveSupport::TestCase
4
4
  setup do
5
- @compressor = Emcee::HtmlCompressor.new
5
+ @compressor = Emcee::Compressors::HtmlCompressor.new
6
6
  end
7
7
 
8
8
  test "compressor should remove html comments" do
@@ -0,0 +1,5 @@
1
+ <polymer-element name="test6" attributes="source">
2
+ <template>
3
+ <img src="{{ source }}" />
4
+ </template>
5
+ </polymer-element>
@@ -68631,3 +68631,1905 @@ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenate
68631
68631
  Processing by DummyController#assets as HTML
68632
68632
  Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
68633
68633
   (0.1ms) rollback transaction
68634
+  (0.1ms) begin transaction
68635
+ -------------------------------------
68636
+ Helpers: test_html_import_should_work
68637
+ -------------------------------------
68638
+  (0.1ms) rollback transaction
68639
+  (0.1ms) begin transaction
68640
+ ---------------------------------------------------
68641
+ ProcessorsTest: test_processing_imports_should_work
68642
+ ---------------------------------------------------
68643
+  (0.1ms) rollback transaction
68644
+  (0.1ms) begin transaction
68645
+ ---------------------------------------------------
68646
+ ProcessorsTest: test_processing_scripts_should_work
68647
+ ---------------------------------------------------
68648
+  (0.1ms) rollback transaction
68649
+  (0.1ms) begin transaction
68650
+ -------------------------------------------------------
68651
+ ProcessorsTest: test_processing_stylesheets_should_work
68652
+ -------------------------------------------------------
68653
+  (0.1ms) rollback transaction
68654
+  (0.0ms) begin transaction
68655
+ ----------------------------------------------------------
68656
+ CompressorsTest: test_compressor_should_remove_blank_lines
68657
+ ----------------------------------------------------------
68658
+  (0.0ms) rollback transaction
68659
+  (0.1ms) begin transaction
68660
+ -----------------------------------------------------------
68661
+ CompressorsTest: test_compressor_should_remove_css_comments
68662
+ -----------------------------------------------------------
68663
+  (0.0ms) rollback transaction
68664
+  (0.0ms) begin transaction
68665
+ ------------------------------------------------------------
68666
+ CompressorsTest: test_compressor_should_remove_html_comments
68667
+ ------------------------------------------------------------
68668
+  (0.0ms) rollback transaction
68669
+  (0.0ms) begin transaction
68670
+ -----------------------------------------------------------------------------
68671
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
68672
+ -----------------------------------------------------------------------------
68673
+  (0.0ms) rollback transaction
68674
+  (0.0ms) begin transaction
68675
+ ------------------------------------------------------------------------------
68676
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
68677
+ ------------------------------------------------------------------------------
68678
+  (0.0ms) rollback transaction
68679
+  (0.0ms) begin transaction
68680
+ -------------------------------------------------------------------------------------------
68681
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
68682
+ -------------------------------------------------------------------------------------------
68683
+ Processing by DummyController#index as HTML
68684
+ Completed 200 OK in 37ms (Views: 37.2ms | ActiveRecord: 0.0ms)
68685
+  (0.1ms) rollback transaction
68686
+  (0.1ms) begin transaction
68687
+ ---------------------------------------------------------------------------------
68688
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
68689
+ ---------------------------------------------------------------------------------
68690
+ Processing by DummyController#assets as HTML
68691
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
68692
+  (0.1ms) rollback transaction
68693
+  (0.1ms) begin transaction
68694
+ ---------------------------------------------------
68695
+ ProcessorsTest: test_processing_imports_should_work
68696
+ ---------------------------------------------------
68697
+  (0.1ms) rollback transaction
68698
+  (0.1ms) begin transaction
68699
+ ---------------------------------------------------
68700
+ ProcessorsTest: test_processing_scripts_should_work
68701
+ ---------------------------------------------------
68702
+  (0.0ms) rollback transaction
68703
+  (0.0ms) begin transaction
68704
+ -------------------------------------------------------
68705
+ ProcessorsTest: test_processing_stylesheets_should_work
68706
+ -------------------------------------------------------
68707
+  (0.1ms) rollback transaction
68708
+  (0.1ms) begin transaction
68709
+ -------------------------------------
68710
+ Helpers: test_html_import_should_work
68711
+ -------------------------------------
68712
+  (0.0ms) rollback transaction
68713
+  (0.0ms) begin transaction
68714
+ ----------------------------------------------------------
68715
+ CompressorsTest: test_compressor_should_remove_blank_lines
68716
+ ----------------------------------------------------------
68717
+  (0.0ms) rollback transaction
68718
+  (0.0ms) begin transaction
68719
+ -----------------------------------------------------------
68720
+ CompressorsTest: test_compressor_should_remove_css_comments
68721
+ -----------------------------------------------------------
68722
+  (0.0ms) rollback transaction
68723
+  (0.1ms) begin transaction
68724
+ ------------------------------------------------------------
68725
+ CompressorsTest: test_compressor_should_remove_html_comments
68726
+ ------------------------------------------------------------
68727
+  (0.0ms) rollback transaction
68728
+  (0.0ms) begin transaction
68729
+ -----------------------------------------------------------------------------
68730
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
68731
+ -----------------------------------------------------------------------------
68732
+  (0.0ms) rollback transaction
68733
+  (0.0ms) begin transaction
68734
+ ------------------------------------------------------------------------------
68735
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
68736
+ ------------------------------------------------------------------------------
68737
+  (0.0ms) rollback transaction
68738
+  (0.0ms) begin transaction
68739
+ -------------------------------------------------------------------------------------------
68740
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
68741
+ -------------------------------------------------------------------------------------------
68742
+ Processing by DummyController#index as HTML
68743
+ Completed 200 OK in 215ms (Views: 214.8ms | ActiveRecord: 0.0ms)
68744
+  (0.1ms) rollback transaction
68745
+  (0.0ms) begin transaction
68746
+ ---------------------------------------------------------------------------------
68747
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
68748
+ ---------------------------------------------------------------------------------
68749
+ Processing by DummyController#assets as HTML
68750
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
68751
+  (0.1ms) rollback transaction
68752
+  (0.1ms) begin transaction
68753
+ ----------------------------------------------------------
68754
+ CompressorsTest: test_compressor_should_remove_blank_lines
68755
+ ----------------------------------------------------------
68756
+  (0.0ms) rollback transaction
68757
+  (0.1ms) begin transaction
68758
+ -----------------------------------------------------------
68759
+ CompressorsTest: test_compressor_should_remove_css_comments
68760
+ -----------------------------------------------------------
68761
+  (0.0ms) rollback transaction
68762
+  (0.1ms) begin transaction
68763
+ ------------------------------------------------------------
68764
+ CompressorsTest: test_compressor_should_remove_html_comments
68765
+ ------------------------------------------------------------
68766
+  (0.0ms) rollback transaction
68767
+  (0.0ms) begin transaction
68768
+ -----------------------------------------------------------------------------
68769
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
68770
+ -----------------------------------------------------------------------------
68771
+  (0.0ms) rollback transaction
68772
+  (0.0ms) begin transaction
68773
+ ------------------------------------------------------------------------------
68774
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
68775
+ ------------------------------------------------------------------------------
68776
+  (0.0ms) rollback transaction
68777
+  (0.0ms) begin transaction
68778
+ ---------------------------------------------------
68779
+ ProcessorsTest: test_processing_imports_should_work
68780
+ ---------------------------------------------------
68781
+  (0.0ms) rollback transaction
68782
+  (0.1ms) begin transaction
68783
+ ---------------------------------------------------
68784
+ ProcessorsTest: test_processing_scripts_should_work
68785
+ ---------------------------------------------------
68786
+  (0.0ms) rollback transaction
68787
+  (0.1ms) begin transaction
68788
+ -------------------------------------------------------
68789
+ ProcessorsTest: test_processing_stylesheets_should_work
68790
+ -------------------------------------------------------
68791
+  (0.0ms) rollback transaction
68792
+  (0.0ms) begin transaction
68793
+ -------------------------------------------------------------------------------------------
68794
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
68795
+ -------------------------------------------------------------------------------------------
68796
+ Processing by DummyController#index as HTML
68797
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
68798
+ Completed 200 OK in 216ms (Views: 216.1ms | ActiveRecord: 0.0ms)
68799
+  (0.1ms) rollback transaction
68800
+  (0.1ms) begin transaction
68801
+ ---------------------------------------------------------------------------------
68802
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
68803
+ ---------------------------------------------------------------------------------
68804
+ Processing by DummyController#assets as HTML
68805
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
68806
+  (0.1ms) rollback transaction
68807
+  (0.0ms) begin transaction
68808
+ -------------------------------------
68809
+ Helpers: test_html_import_should_work
68810
+ -------------------------------------
68811
+  (0.0ms) rollback transaction
68812
+  (0.1ms) begin transaction
68813
+ ---------------------------------------------------
68814
+ ProcessorsTest: test_processing_imports_should_work
68815
+ ---------------------------------------------------
68816
+  (0.1ms) rollback transaction
68817
+  (0.1ms) begin transaction
68818
+ ---------------------------------------------------
68819
+ ProcessorsTest: test_processing_scripts_should_work
68820
+ ---------------------------------------------------
68821
+  (0.0ms) rollback transaction
68822
+  (0.0ms) begin transaction
68823
+ -------------------------------------------------------
68824
+ ProcessorsTest: test_processing_stylesheets_should_work
68825
+ -------------------------------------------------------
68826
+  (0.0ms) rollback transaction
68827
+  (0.0ms) begin transaction
68828
+ -------------------------------------
68829
+ Helpers: test_html_import_should_work
68830
+ -------------------------------------
68831
+  (0.0ms) rollback transaction
68832
+  (0.0ms) begin transaction
68833
+ -------------------------------------------------------------------------------------------
68834
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
68835
+ -------------------------------------------------------------------------------------------
68836
+ Processing by DummyController#index as HTML
68837
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
68838
+  (0.1ms) rollback transaction
68839
+  (0.1ms) begin transaction
68840
+ ---------------------------------------------------------------------------------
68841
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
68842
+ ---------------------------------------------------------------------------------
68843
+ Processing by DummyController#assets as HTML
68844
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
68845
+  (0.1ms) rollback transaction
68846
+  (0.0ms) begin transaction
68847
+ ----------------------------------------------------------
68848
+ CompressorsTest: test_compressor_should_remove_blank_lines
68849
+ ----------------------------------------------------------
68850
+  (0.0ms) rollback transaction
68851
+  (0.0ms) begin transaction
68852
+ -----------------------------------------------------------
68853
+ CompressorsTest: test_compressor_should_remove_css_comments
68854
+ -----------------------------------------------------------
68855
+  (0.0ms) rollback transaction
68856
+  (0.0ms) begin transaction
68857
+ ------------------------------------------------------------
68858
+ CompressorsTest: test_compressor_should_remove_html_comments
68859
+ ------------------------------------------------------------
68860
+  (0.0ms) rollback transaction
68861
+  (0.0ms) begin transaction
68862
+ -----------------------------------------------------------------------------
68863
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
68864
+ -----------------------------------------------------------------------------
68865
+  (0.0ms) rollback transaction
68866
+  (0.0ms) begin transaction
68867
+ ------------------------------------------------------------------------------
68868
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
68869
+ ------------------------------------------------------------------------------
68870
+  (0.0ms) rollback transaction
68871
+  (0.1ms) begin transaction
68872
+ -------------------------------------
68873
+ Helpers: test_html_import_should_work
68874
+ -------------------------------------
68875
+  (0.0ms) rollback transaction
68876
+  (0.0ms) begin transaction
68877
+ ----------------------------------------------------------
68878
+ CompressorsTest: test_compressor_should_remove_blank_lines
68879
+ ----------------------------------------------------------
68880
+  (0.0ms) rollback transaction
68881
+  (0.0ms) begin transaction
68882
+ -----------------------------------------------------------
68883
+ CompressorsTest: test_compressor_should_remove_css_comments
68884
+ -----------------------------------------------------------
68885
+  (0.0ms) rollback transaction
68886
+  (0.0ms) begin transaction
68887
+ ------------------------------------------------------------
68888
+ CompressorsTest: test_compressor_should_remove_html_comments
68889
+ ------------------------------------------------------------
68890
+  (0.0ms) rollback transaction
68891
+  (0.0ms) begin transaction
68892
+ -----------------------------------------------------------------------------
68893
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
68894
+ -----------------------------------------------------------------------------
68895
+  (0.0ms) rollback transaction
68896
+  (0.0ms) begin transaction
68897
+ ------------------------------------------------------------------------------
68898
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
68899
+ ------------------------------------------------------------------------------
68900
+  (0.0ms) rollback transaction
68901
+  (0.0ms) begin transaction
68902
+ -------------------------------------------------------------------------------------------
68903
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
68904
+ -------------------------------------------------------------------------------------------
68905
+ Processing by DummyController#index as HTML
68906
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
68907
+  (0.1ms) rollback transaction
68908
+  (0.0ms) begin transaction
68909
+ ---------------------------------------------------------------------------------
68910
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
68911
+ ---------------------------------------------------------------------------------
68912
+ Processing by DummyController#assets as HTML
68913
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
68914
+  (0.1ms) rollback transaction
68915
+  (0.1ms) begin transaction
68916
+ ---------------------------------------------------
68917
+ ProcessorsTest: test_processing_imports_should_work
68918
+ ---------------------------------------------------
68919
+  (0.0ms) rollback transaction
68920
+  (0.0ms) begin transaction
68921
+ ---------------------------------------------------
68922
+ ProcessorsTest: test_processing_scripts_should_work
68923
+ ---------------------------------------------------
68924
+  (0.1ms) rollback transaction
68925
+  (0.0ms) begin transaction
68926
+ -------------------------------------------------------
68927
+ ProcessorsTest: test_processing_stylesheets_should_work
68928
+ -------------------------------------------------------
68929
+  (0.0ms) rollback transaction
68930
+  (0.1ms) begin transaction
68931
+ -------------------------------------
68932
+ Helpers: test_html_import_should_work
68933
+ -------------------------------------
68934
+  (0.1ms) rollback transaction
68935
+  (0.0ms) begin transaction
68936
+ -------------------------------------------------------------------------------------------
68937
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
68938
+ -------------------------------------------------------------------------------------------
68939
+ Processing by DummyController#index as HTML
68940
+ Completed 200 OK in 24ms (Views: 24.0ms | ActiveRecord: 0.0ms)
68941
+  (0.1ms) rollback transaction
68942
+  (0.1ms) begin transaction
68943
+ ---------------------------------------------------------------------------------
68944
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
68945
+ ---------------------------------------------------------------------------------
68946
+ Processing by DummyController#assets as HTML
68947
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
68948
+  (0.1ms) rollback transaction
68949
+  (0.0ms) begin transaction
68950
+ ---------------------------------------------------
68951
+ ProcessorsTest: test_processing_imports_should_work
68952
+ ---------------------------------------------------
68953
+  (0.0ms) rollback transaction
68954
+  (0.0ms) begin transaction
68955
+ ---------------------------------------------------
68956
+ ProcessorsTest: test_processing_scripts_should_work
68957
+ ---------------------------------------------------
68958
+  (0.0ms) rollback transaction
68959
+  (0.0ms) begin transaction
68960
+ -------------------------------------------------------
68961
+ ProcessorsTest: test_processing_stylesheets_should_work
68962
+ -------------------------------------------------------
68963
+  (0.1ms) rollback transaction
68964
+  (0.0ms) begin transaction
68965
+ ----------------------------------------------------------
68966
+ CompressorsTest: test_compressor_should_remove_blank_lines
68967
+ ----------------------------------------------------------
68968
+  (0.0ms) rollback transaction
68969
+  (0.0ms) begin transaction
68970
+ -----------------------------------------------------------
68971
+ CompressorsTest: test_compressor_should_remove_css_comments
68972
+ -----------------------------------------------------------
68973
+  (0.0ms) rollback transaction
68974
+  (0.0ms) begin transaction
68975
+ ------------------------------------------------------------
68976
+ CompressorsTest: test_compressor_should_remove_html_comments
68977
+ ------------------------------------------------------------
68978
+  (0.0ms) rollback transaction
68979
+  (0.0ms) begin transaction
68980
+ -----------------------------------------------------------------------------
68981
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
68982
+ -----------------------------------------------------------------------------
68983
+  (0.0ms) rollback transaction
68984
+  (0.1ms) begin transaction
68985
+ ------------------------------------------------------------------------------
68986
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
68987
+ ------------------------------------------------------------------------------
68988
+  (0.0ms) rollback transaction
68989
+  (0.1ms) begin transaction
68990
+ -------------------------------------------------------------------------------------------
68991
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
68992
+ -------------------------------------------------------------------------------------------
68993
+ Processing by DummyController#index as HTML
68994
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
68995
+ Completed 200 OK in 237ms (Views: 236.4ms | ActiveRecord: 0.0ms)
68996
+  (0.1ms) rollback transaction
68997
+  (0.1ms) begin transaction
68998
+ ---------------------------------------------------------------------------------
68999
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69000
+ ---------------------------------------------------------------------------------
69001
+ Processing by DummyController#assets as HTML
69002
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69003
+  (0.1ms) rollback transaction
69004
+  (0.1ms) begin transaction
69005
+ -------------------------------------
69006
+ Helpers: test_html_import_should_work
69007
+ -------------------------------------
69008
+  (0.0ms) rollback transaction
69009
+  (0.0ms) begin transaction
69010
+ ---------------------------------------------------
69011
+ ProcessorsTest: test_processing_imports_should_work
69012
+ ---------------------------------------------------
69013
+  (0.0ms) rollback transaction
69014
+  (0.0ms) begin transaction
69015
+ ---------------------------------------------------
69016
+ ProcessorsTest: test_processing_scripts_should_work
69017
+ ---------------------------------------------------
69018
+  (0.0ms) rollback transaction
69019
+  (0.0ms) begin transaction
69020
+ -------------------------------------------------------
69021
+ ProcessorsTest: test_processing_stylesheets_should_work
69022
+ -------------------------------------------------------
69023
+  (0.0ms) rollback transaction
69024
+  (0.1ms) begin transaction
69025
+ ----------------------------------------------------------
69026
+ CompressorsTest: test_compressor_should_remove_blank_lines
69027
+ ----------------------------------------------------------
69028
+  (0.0ms) rollback transaction
69029
+  (0.0ms) begin transaction
69030
+ -----------------------------------------------------------
69031
+ CompressorsTest: test_compressor_should_remove_css_comments
69032
+ -----------------------------------------------------------
69033
+  (0.0ms) rollback transaction
69034
+  (0.0ms) begin transaction
69035
+ ------------------------------------------------------------
69036
+ CompressorsTest: test_compressor_should_remove_html_comments
69037
+ ------------------------------------------------------------
69038
+  (0.0ms) rollback transaction
69039
+  (0.0ms) begin transaction
69040
+ -----------------------------------------------------------------------------
69041
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69042
+ -----------------------------------------------------------------------------
69043
+  (0.0ms) rollback transaction
69044
+  (0.0ms) begin transaction
69045
+ ------------------------------------------------------------------------------
69046
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69047
+ ------------------------------------------------------------------------------
69048
+  (0.0ms) rollback transaction
69049
+  (0.1ms) begin transaction
69050
+ ----------------------------------------------------------
69051
+ CompressorsTest: test_compressor_should_remove_blank_lines
69052
+ ----------------------------------------------------------
69053
+  (0.0ms) rollback transaction
69054
+  (0.1ms) begin transaction
69055
+ -----------------------------------------------------------
69056
+ CompressorsTest: test_compressor_should_remove_css_comments
69057
+ -----------------------------------------------------------
69058
+  (0.0ms) rollback transaction
69059
+  (0.1ms) begin transaction
69060
+ ------------------------------------------------------------
69061
+ CompressorsTest: test_compressor_should_remove_html_comments
69062
+ ------------------------------------------------------------
69063
+  (0.0ms) rollback transaction
69064
+  (0.0ms) begin transaction
69065
+ -----------------------------------------------------------------------------
69066
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69067
+ -----------------------------------------------------------------------------
69068
+  (0.0ms) rollback transaction
69069
+  (0.0ms) begin transaction
69070
+ ------------------------------------------------------------------------------
69071
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69072
+ ------------------------------------------------------------------------------
69073
+  (0.0ms) rollback transaction
69074
+  (0.0ms) begin transaction
69075
+ ---------------------------------------------------
69076
+ ProcessorsTest: test_processing_imports_should_work
69077
+ ---------------------------------------------------
69078
+  (0.0ms) rollback transaction
69079
+  (0.0ms) begin transaction
69080
+ ---------------------------------------------------
69081
+ ProcessorsTest: test_processing_scripts_should_work
69082
+ ---------------------------------------------------
69083
+  (0.0ms) rollback transaction
69084
+  (0.0ms) begin transaction
69085
+ -------------------------------------------------------
69086
+ ProcessorsTest: test_processing_stylesheets_should_work
69087
+ -------------------------------------------------------
69088
+  (0.0ms) rollback transaction
69089
+  (0.0ms) begin transaction
69090
+ -------------------------------------
69091
+ Helpers: test_html_import_should_work
69092
+ -------------------------------------
69093
+  (0.0ms) rollback transaction
69094
+  (0.0ms) begin transaction
69095
+ -------------------------------------------------------------------------------------------
69096
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69097
+ -------------------------------------------------------------------------------------------
69098
+ Processing by DummyController#index as HTML
69099
+ Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
69100
+  (0.1ms) rollback transaction
69101
+  (0.1ms) begin transaction
69102
+ ---------------------------------------------------------------------------------
69103
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69104
+ ---------------------------------------------------------------------------------
69105
+ Processing by DummyController#assets as HTML
69106
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 0.0ms)
69107
+  (0.1ms) rollback transaction
69108
+  (0.1ms) begin transaction
69109
+ ----------------------------------------------------------
69110
+ CompressorsTest: test_compressor_should_remove_blank_lines
69111
+ ----------------------------------------------------------
69112
+  (0.0ms) rollback transaction
69113
+  (0.0ms) begin transaction
69114
+ -----------------------------------------------------------
69115
+ CompressorsTest: test_compressor_should_remove_css_comments
69116
+ -----------------------------------------------------------
69117
+  (0.0ms) rollback transaction
69118
+  (0.0ms) begin transaction
69119
+ ------------------------------------------------------------
69120
+ CompressorsTest: test_compressor_should_remove_html_comments
69121
+ ------------------------------------------------------------
69122
+  (0.0ms) rollback transaction
69123
+  (0.1ms) begin transaction
69124
+ -----------------------------------------------------------------------------
69125
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69126
+ -----------------------------------------------------------------------------
69127
+  (0.0ms) rollback transaction
69128
+  (0.0ms) begin transaction
69129
+ ------------------------------------------------------------------------------
69130
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69131
+ ------------------------------------------------------------------------------
69132
+  (0.0ms) rollback transaction
69133
+  (0.0ms) begin transaction
69134
+ ---------------------------------------------------
69135
+ ProcessorsTest: test_processing_imports_should_work
69136
+ ---------------------------------------------------
69137
+  (0.0ms) rollback transaction
69138
+  (0.1ms) begin transaction
69139
+ ---------------------------------------------------
69140
+ ProcessorsTest: test_processing_scripts_should_work
69141
+ ---------------------------------------------------
69142
+  (0.0ms) rollback transaction
69143
+  (0.1ms) begin transaction
69144
+ -------------------------------------------------------
69145
+ ProcessorsTest: test_processing_stylesheets_should_work
69146
+ -------------------------------------------------------
69147
+  (0.0ms) rollback transaction
69148
+  (0.0ms) begin transaction
69149
+ -------------------------------------
69150
+ Helpers: test_html_import_should_work
69151
+ -------------------------------------
69152
+  (0.0ms) rollback transaction
69153
+  (0.0ms) begin transaction
69154
+ -------------------------------------------------------------------------------------------
69155
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69156
+ -------------------------------------------------------------------------------------------
69157
+ Processing by DummyController#index as HTML
69158
+ Completed 200 OK in 216ms (Views: 215.3ms | ActiveRecord: 0.0ms)
69159
+  (0.1ms) rollback transaction
69160
+  (0.1ms) begin transaction
69161
+ ---------------------------------------------------------------------------------
69162
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69163
+ ---------------------------------------------------------------------------------
69164
+ Processing by DummyController#assets as HTML
69165
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69166
+  (0.1ms) rollback transaction
69167
+  (0.1ms) begin transaction
69168
+ ----------------------------------------------------------
69169
+ CompressorsTest: test_compressor_should_remove_blank_lines
69170
+ ----------------------------------------------------------
69171
+  (0.0ms) rollback transaction
69172
+  (0.0ms) begin transaction
69173
+ -----------------------------------------------------------
69174
+ CompressorsTest: test_compressor_should_remove_css_comments
69175
+ -----------------------------------------------------------
69176
+  (0.0ms) rollback transaction
69177
+  (0.1ms) begin transaction
69178
+ ------------------------------------------------------------
69179
+ CompressorsTest: test_compressor_should_remove_html_comments
69180
+ ------------------------------------------------------------
69181
+  (0.0ms) rollback transaction
69182
+  (0.0ms) begin transaction
69183
+ -----------------------------------------------------------------------------
69184
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69185
+ -----------------------------------------------------------------------------
69186
+  (0.0ms) rollback transaction
69187
+  (0.0ms) begin transaction
69188
+ ------------------------------------------------------------------------------
69189
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69190
+ ------------------------------------------------------------------------------
69191
+  (0.0ms) rollback transaction
69192
+  (0.0ms) begin transaction
69193
+ ---------------------------------------------------
69194
+ ProcessorsTest: test_processing_imports_should_work
69195
+ ---------------------------------------------------
69196
+  (0.1ms) rollback transaction
69197
+  (0.1ms) begin transaction
69198
+ ---------------------------------------------------
69199
+ ProcessorsTest: test_processing_scripts_should_work
69200
+ ---------------------------------------------------
69201
+  (0.0ms) rollback transaction
69202
+  (0.0ms) begin transaction
69203
+ -------------------------------------------------------
69204
+ ProcessorsTest: test_processing_stylesheets_should_work
69205
+ -------------------------------------------------------
69206
+  (0.0ms) rollback transaction
69207
+  (0.0ms) begin transaction
69208
+ -------------------------------------------------------------------------------------------
69209
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69210
+ -------------------------------------------------------------------------------------------
69211
+ Processing by DummyController#index as HTML
69212
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
69213
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
69214
+  (0.1ms) rollback transaction
69215
+  (0.1ms) begin transaction
69216
+ ---------------------------------------------------------------------------------
69217
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69218
+ ---------------------------------------------------------------------------------
69219
+ Processing by DummyController#assets as HTML
69220
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69221
+  (0.2ms) rollback transaction
69222
+  (0.1ms) begin transaction
69223
+ -------------------------------------
69224
+ Helpers: test_html_import_should_work
69225
+ -------------------------------------
69226
+  (0.0ms) rollback transaction
69227
+  (0.1ms) begin transaction
69228
+ ---------------------------------------------------
69229
+ ProcessorsTest: test_processing_imports_should_work
69230
+ ---------------------------------------------------
69231
+  (0.1ms) rollback transaction
69232
+  (0.0ms) begin transaction
69233
+ ---------------------------------------------------
69234
+ ProcessorsTest: test_processing_scripts_should_work
69235
+ ---------------------------------------------------
69236
+  (0.0ms) rollback transaction
69237
+  (0.0ms) begin transaction
69238
+ -------------------------------------------------------
69239
+ ProcessorsTest: test_processing_stylesheets_should_work
69240
+ -------------------------------------------------------
69241
+  (0.0ms) rollback transaction
69242
+  (0.0ms) begin transaction
69243
+ -------------------------------------------------------------------------------------------
69244
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69245
+ -------------------------------------------------------------------------------------------
69246
+ Processing by DummyController#index as HTML
69247
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
69248
+ Completed 200 OK in 16ms (Views: 16.3ms | ActiveRecord: 0.0ms)
69249
+  (0.1ms) rollback transaction
69250
+  (0.0ms) begin transaction
69251
+ ---------------------------------------------------------------------------------
69252
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69253
+ ---------------------------------------------------------------------------------
69254
+ Processing by DummyController#assets as HTML
69255
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69256
+  (0.1ms) rollback transaction
69257
+  (0.1ms) begin transaction
69258
+ ----------------------------------------------------------
69259
+ CompressorsTest: test_compressor_should_remove_blank_lines
69260
+ ----------------------------------------------------------
69261
+  (0.1ms) rollback transaction
69262
+  (0.0ms) begin transaction
69263
+ -----------------------------------------------------------
69264
+ CompressorsTest: test_compressor_should_remove_css_comments
69265
+ -----------------------------------------------------------
69266
+  (0.0ms) rollback transaction
69267
+  (0.0ms) begin transaction
69268
+ ------------------------------------------------------------
69269
+ CompressorsTest: test_compressor_should_remove_html_comments
69270
+ ------------------------------------------------------------
69271
+  (0.0ms) rollback transaction
69272
+  (0.0ms) begin transaction
69273
+ -----------------------------------------------------------------------------
69274
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69275
+ -----------------------------------------------------------------------------
69276
+  (0.0ms) rollback transaction
69277
+  (0.0ms) begin transaction
69278
+ ------------------------------------------------------------------------------
69279
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69280
+ ------------------------------------------------------------------------------
69281
+  (0.0ms) rollback transaction
69282
+  (0.1ms) begin transaction
69283
+ -------------------------------------
69284
+ Helpers: test_html_import_should_work
69285
+ -------------------------------------
69286
+  (0.0ms) rollback transaction
69287
+  (0.1ms) begin transaction
69288
+ ---------------------------------------------------
69289
+ ProcessorsTest: test_processing_imports_should_work
69290
+ ---------------------------------------------------
69291
+  (0.0ms) rollback transaction
69292
+  (0.1ms) begin transaction
69293
+ ---------------------------------------------------
69294
+ ProcessorsTest: test_processing_scripts_should_work
69295
+ ---------------------------------------------------
69296
+  (0.0ms) rollback transaction
69297
+  (0.0ms) begin transaction
69298
+ -------------------------------------------------------
69299
+ ProcessorsTest: test_processing_stylesheets_should_work
69300
+ -------------------------------------------------------
69301
+  (0.0ms) rollback transaction
69302
+  (0.0ms) begin transaction
69303
+ -------------------------------------------------------------------------------------------
69304
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69305
+ -------------------------------------------------------------------------------------------
69306
+ Processing by DummyController#index as HTML
69307
+ Rendered dummy/index.html.erb within layouts/application (3.1ms)
69308
+ Completed 200 OK in 30ms (Views: 30.0ms | ActiveRecord: 0.0ms)
69309
+  (0.1ms) rollback transaction
69310
+  (0.1ms) begin transaction
69311
+ ---------------------------------------------------------------------------------
69312
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69313
+ ---------------------------------------------------------------------------------
69314
+ Processing by DummyController#assets as HTML
69315
+ Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69316
+  (0.1ms) rollback transaction
69317
+  (0.1ms) begin transaction
69318
+ ----------------------------------------------------------
69319
+ CompressorsTest: test_compressor_should_remove_blank_lines
69320
+ ----------------------------------------------------------
69321
+  (0.0ms) rollback transaction
69322
+  (0.0ms) begin transaction
69323
+ -----------------------------------------------------------
69324
+ CompressorsTest: test_compressor_should_remove_css_comments
69325
+ -----------------------------------------------------------
69326
+  (0.0ms) rollback transaction
69327
+  (0.0ms) begin transaction
69328
+ ------------------------------------------------------------
69329
+ CompressorsTest: test_compressor_should_remove_html_comments
69330
+ ------------------------------------------------------------
69331
+  (0.0ms) rollback transaction
69332
+  (0.0ms) begin transaction
69333
+ -----------------------------------------------------------------------------
69334
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69335
+ -----------------------------------------------------------------------------
69336
+  (0.0ms) rollback transaction
69337
+  (0.0ms) begin transaction
69338
+ ------------------------------------------------------------------------------
69339
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69340
+ ------------------------------------------------------------------------------
69341
+  (0.0ms) rollback transaction
69342
+  (0.0ms) begin transaction
69343
+ -------------------------------------
69344
+ Helpers: test_html_import_should_work
69345
+ -------------------------------------
69346
+  (0.1ms) rollback transaction
69347
+  (0.1ms) begin transaction
69348
+ ---------------------------------------------------
69349
+ ProcessorsTest: test_processing_imports_should_work
69350
+ ---------------------------------------------------
69351
+  (0.0ms) rollback transaction
69352
+  (0.0ms) begin transaction
69353
+ ---------------------------------------------------
69354
+ ProcessorsTest: test_processing_scripts_should_work
69355
+ ---------------------------------------------------
69356
+  (0.0ms) rollback transaction
69357
+  (0.1ms) begin transaction
69358
+ -------------------------------------------------------
69359
+ ProcessorsTest: test_processing_stylesheets_should_work
69360
+ -------------------------------------------------------
69361
+  (0.0ms) rollback transaction
69362
+  (0.0ms) begin transaction
69363
+ -------------------------------------
69364
+ Helpers: test_html_import_should_work
69365
+ -------------------------------------
69366
+  (0.0ms) rollback transaction
69367
+  (0.0ms) begin transaction
69368
+ -------------------------------------------------------------------------------------------
69369
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69370
+ -------------------------------------------------------------------------------------------
69371
+ Processing by DummyController#index as HTML
69372
+ Completed 200 OK in 217ms (Views: 216.6ms | ActiveRecord: 0.0ms)
69373
+  (0.1ms) rollback transaction
69374
+  (0.1ms) begin transaction
69375
+ ---------------------------------------------------------------------------------
69376
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69377
+ ---------------------------------------------------------------------------------
69378
+ Processing by DummyController#assets as HTML
69379
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69380
+  (0.1ms) rollback transaction
69381
+  (0.0ms) begin transaction
69382
+ ----------------------------------------------------------
69383
+ CompressorsTest: test_compressor_should_remove_blank_lines
69384
+ ----------------------------------------------------------
69385
+  (0.0ms) rollback transaction
69386
+  (0.0ms) begin transaction
69387
+ -----------------------------------------------------------
69388
+ CompressorsTest: test_compressor_should_remove_css_comments
69389
+ -----------------------------------------------------------
69390
+  (0.0ms) rollback transaction
69391
+  (0.0ms) begin transaction
69392
+ ------------------------------------------------------------
69393
+ CompressorsTest: test_compressor_should_remove_html_comments
69394
+ ------------------------------------------------------------
69395
+  (0.0ms) rollback transaction
69396
+  (0.0ms) begin transaction
69397
+ -----------------------------------------------------------------------------
69398
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69399
+ -----------------------------------------------------------------------------
69400
+  (0.0ms) rollback transaction
69401
+  (0.1ms) begin transaction
69402
+ ------------------------------------------------------------------------------
69403
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69404
+ ------------------------------------------------------------------------------
69405
+  (0.0ms) rollback transaction
69406
+  (0.1ms) begin transaction
69407
+ ---------------------------------------------------
69408
+ ProcessorsTest: test_processing_imports_should_work
69409
+ ---------------------------------------------------
69410
+  (0.1ms) rollback transaction
69411
+  (0.0ms) begin transaction
69412
+ ---------------------------------------------------
69413
+ ProcessorsTest: test_processing_scripts_should_work
69414
+ ---------------------------------------------------
69415
+  (0.0ms) rollback transaction
69416
+  (0.0ms) begin transaction
69417
+ -------------------------------------------------------
69418
+ ProcessorsTest: test_processing_stylesheets_should_work
69419
+ -------------------------------------------------------
69420
+  (0.0ms) rollback transaction
69421
+  (0.0ms) begin transaction
69422
+ -------------------------------------------------------------------------------------------
69423
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69424
+ -------------------------------------------------------------------------------------------
69425
+ Processing by DummyController#index as HTML
69426
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
69427
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
69428
+  (0.1ms) rollback transaction
69429
+  (0.0ms) begin transaction
69430
+ ---------------------------------------------------------------------------------
69431
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69432
+ ---------------------------------------------------------------------------------
69433
+ Processing by DummyController#assets as HTML
69434
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69435
+  (0.1ms) rollback transaction
69436
+  (0.1ms) begin transaction
69437
+ -------------------------------------
69438
+ Helpers: test_html_import_should_work
69439
+ -------------------------------------
69440
+  (0.0ms) rollback transaction
69441
+  (0.0ms) begin transaction
69442
+ ----------------------------------------------------------
69443
+ CompressorsTest: test_compressor_should_remove_blank_lines
69444
+ ----------------------------------------------------------
69445
+  (0.0ms) rollback transaction
69446
+  (0.0ms) begin transaction
69447
+ -----------------------------------------------------------
69448
+ CompressorsTest: test_compressor_should_remove_css_comments
69449
+ -----------------------------------------------------------
69450
+  (0.0ms) rollback transaction
69451
+  (0.0ms) begin transaction
69452
+ ------------------------------------------------------------
69453
+ CompressorsTest: test_compressor_should_remove_html_comments
69454
+ ------------------------------------------------------------
69455
+  (0.0ms) rollback transaction
69456
+  (0.0ms) begin transaction
69457
+ -----------------------------------------------------------------------------
69458
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69459
+ -----------------------------------------------------------------------------
69460
+  (0.0ms) rollback transaction
69461
+  (0.0ms) begin transaction
69462
+ ------------------------------------------------------------------------------
69463
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69464
+ ------------------------------------------------------------------------------
69465
+  (0.1ms) rollback transaction
69466
+  (0.1ms) begin transaction
69467
+ -------------------------------------
69468
+ Helpers: test_html_import_should_work
69469
+ -------------------------------------
69470
+  (0.1ms) rollback transaction
69471
+  (0.1ms) begin transaction
69472
+ ----------------------------------------------------------
69473
+ CompressorsTest: test_compressor_should_remove_blank_lines
69474
+ ----------------------------------------------------------
69475
+  (0.0ms) rollback transaction
69476
+  (0.0ms) begin transaction
69477
+ -----------------------------------------------------------
69478
+ CompressorsTest: test_compressor_should_remove_css_comments
69479
+ -----------------------------------------------------------
69480
+  (0.0ms) rollback transaction
69481
+  (0.0ms) begin transaction
69482
+ ------------------------------------------------------------
69483
+ CompressorsTest: test_compressor_should_remove_html_comments
69484
+ ------------------------------------------------------------
69485
+  (0.0ms) rollback transaction
69486
+  (0.0ms) begin transaction
69487
+ -----------------------------------------------------------------------------
69488
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69489
+ -----------------------------------------------------------------------------
69490
+  (0.0ms) rollback transaction
69491
+  (0.0ms) begin transaction
69492
+ ------------------------------------------------------------------------------
69493
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69494
+ ------------------------------------------------------------------------------
69495
+  (0.0ms) rollback transaction
69496
+  (0.0ms) begin transaction
69497
+ -------------------------------------------------------------------------------------------
69498
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69499
+ -------------------------------------------------------------------------------------------
69500
+ Processing by DummyController#index as HTML
69501
+ Completed 200 OK in 206ms (Views: 205.3ms | ActiveRecord: 0.0ms)
69502
+  (0.1ms) rollback transaction
69503
+  (0.1ms) begin transaction
69504
+ ---------------------------------------------------------------------------------
69505
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69506
+ ---------------------------------------------------------------------------------
69507
+ Processing by DummyController#assets as HTML
69508
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69509
+  (0.1ms) rollback transaction
69510
+  (0.1ms) begin transaction
69511
+ ---------------------------------------------------
69512
+ ProcessorsTest: test_processing_imports_should_work
69513
+ ---------------------------------------------------
69514
+  (0.0ms) rollback transaction
69515
+  (0.0ms) begin transaction
69516
+ ---------------------------------------------------
69517
+ ProcessorsTest: test_processing_scripts_should_work
69518
+ ---------------------------------------------------
69519
+  (0.0ms) rollback transaction
69520
+  (0.0ms) begin transaction
69521
+ -------------------------------------------------------
69522
+ ProcessorsTest: test_processing_stylesheets_should_work
69523
+ -------------------------------------------------------
69524
+  (0.0ms) rollback transaction
69525
+  (0.1ms) begin transaction
69526
+ -------------------------------------------------------
69527
+ PostProcessorsTest: test_processing_imports_should_work
69528
+ -------------------------------------------------------
69529
+  (0.0ms) rollback transaction
69530
+  (0.0ms) begin transaction
69531
+ -------------------------------------------------------
69532
+ PostProcessorsTest: test_processing_scripts_should_work
69533
+ -------------------------------------------------------
69534
+  (0.0ms) rollback transaction
69535
+  (0.1ms) begin transaction
69536
+ -----------------------------------------------------------
69537
+ PostProcessorsTest: test_processing_stylesheets_should_work
69538
+ -----------------------------------------------------------
69539
+  (0.0ms) rollback transaction
69540
+  (0.0ms) begin transaction
69541
+ -------------------------------------
69542
+ Helpers: test_html_import_should_work
69543
+ -------------------------------------
69544
+  (0.0ms) rollback transaction
69545
+  (0.1ms) begin transaction
69546
+ ----------------------------------------------------------
69547
+ CompressorsTest: test_compressor_should_remove_blank_lines
69548
+ ----------------------------------------------------------
69549
+  (0.0ms) rollback transaction
69550
+  (0.0ms) begin transaction
69551
+ -----------------------------------------------------------
69552
+ CompressorsTest: test_compressor_should_remove_css_comments
69553
+ -----------------------------------------------------------
69554
+  (0.1ms) rollback transaction
69555
+  (0.0ms) begin transaction
69556
+ ------------------------------------------------------------
69557
+ CompressorsTest: test_compressor_should_remove_html_comments
69558
+ ------------------------------------------------------------
69559
+  (0.0ms) rollback transaction
69560
+  (0.0ms) begin transaction
69561
+ -----------------------------------------------------------------------------
69562
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69563
+ -----------------------------------------------------------------------------
69564
+  (0.0ms) rollback transaction
69565
+  (0.0ms) begin transaction
69566
+ ------------------------------------------------------------------------------
69567
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69568
+ ------------------------------------------------------------------------------
69569
+  (0.0ms) rollback transaction
69570
+  (0.0ms) begin transaction
69571
+ -------------------------------------------------------------------------------------------
69572
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69573
+ -------------------------------------------------------------------------------------------
69574
+ Processing by DummyController#index as HTML
69575
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
69576
+  (0.1ms) rollback transaction
69577
+  (0.0ms) begin transaction
69578
+ ---------------------------------------------------------------------------------
69579
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69580
+ ---------------------------------------------------------------------------------
69581
+ Processing by DummyController#assets as HTML
69582
+ Completed 200 OK in 9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69583
+  (0.1ms) rollback transaction
69584
+  (0.1ms) begin transaction
69585
+ -------------------------------------
69586
+ Helpers: test_html_import_should_work
69587
+ -------------------------------------
69588
+  (0.0ms) rollback transaction
69589
+  (0.0ms) begin transaction
69590
+ ----------------------------------------------------------
69591
+ CompressorsTest: test_compressor_should_remove_blank_lines
69592
+ ----------------------------------------------------------
69593
+  (0.0ms) rollback transaction
69594
+  (0.0ms) begin transaction
69595
+ -----------------------------------------------------------
69596
+ CompressorsTest: test_compressor_should_remove_css_comments
69597
+ -----------------------------------------------------------
69598
+  (0.0ms) rollback transaction
69599
+  (0.0ms) begin transaction
69600
+ ------------------------------------------------------------
69601
+ CompressorsTest: test_compressor_should_remove_html_comments
69602
+ ------------------------------------------------------------
69603
+  (0.0ms) rollback transaction
69604
+  (0.0ms) begin transaction
69605
+ -----------------------------------------------------------------------------
69606
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69607
+ -----------------------------------------------------------------------------
69608
+  (0.0ms) rollback transaction
69609
+  (0.0ms) begin transaction
69610
+ ------------------------------------------------------------------------------
69611
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69612
+ ------------------------------------------------------------------------------
69613
+  (0.0ms) rollback transaction
69614
+  (0.0ms) begin transaction
69615
+ -------------------------------------------------------------------------------------------
69616
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69617
+ -------------------------------------------------------------------------------------------
69618
+ Processing by DummyController#index as HTML
69619
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
69620
+  (0.1ms) rollback transaction
69621
+  (0.1ms) begin transaction
69622
+ ---------------------------------------------------------------------------------
69623
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69624
+ ---------------------------------------------------------------------------------
69625
+ Processing by DummyController#assets as HTML
69626
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69627
+  (0.1ms) rollback transaction
69628
+  (0.1ms) begin transaction
69629
+ -------------------------------------------------------
69630
+ PostProcessorsTest: test_processing_imports_should_work
69631
+ -------------------------------------------------------
69632
+  (0.1ms) rollback transaction
69633
+  (0.0ms) begin transaction
69634
+ -------------------------------------------------------
69635
+ PostProcessorsTest: test_processing_scripts_should_work
69636
+ -------------------------------------------------------
69637
+  (0.0ms) rollback transaction
69638
+  (0.0ms) begin transaction
69639
+ -----------------------------------------------------------
69640
+ PostProcessorsTest: test_processing_stylesheets_should_work
69641
+ -----------------------------------------------------------
69642
+  (0.2ms) rollback transaction
69643
+  (0.1ms) begin transaction
69644
+ -------------------------------------
69645
+ Helpers: test_html_import_should_work
69646
+ -------------------------------------
69647
+  (0.0ms) rollback transaction
69648
+  (0.0ms) begin transaction
69649
+ ----------------------------------------------------------
69650
+ CompressorsTest: test_compressor_should_remove_blank_lines
69651
+ ----------------------------------------------------------
69652
+  (0.0ms) rollback transaction
69653
+  (0.1ms) begin transaction
69654
+ -----------------------------------------------------------
69655
+ CompressorsTest: test_compressor_should_remove_css_comments
69656
+ -----------------------------------------------------------
69657
+  (0.1ms) rollback transaction
69658
+  (0.0ms) begin transaction
69659
+ ------------------------------------------------------------
69660
+ CompressorsTest: test_compressor_should_remove_html_comments
69661
+ ------------------------------------------------------------
69662
+  (0.1ms) rollback transaction
69663
+  (0.0ms) begin transaction
69664
+ -----------------------------------------------------------------------------
69665
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69666
+ -----------------------------------------------------------------------------
69667
+  (0.0ms) rollback transaction
69668
+  (0.0ms) begin transaction
69669
+ ------------------------------------------------------------------------------
69670
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69671
+ ------------------------------------------------------------------------------
69672
+  (0.0ms) rollback transaction
69673
+  (0.0ms) begin transaction
69674
+ -------------------------------------------------------
69675
+ PostProcessorsTest: test_processing_imports_should_work
69676
+ -------------------------------------------------------
69677
+  (0.0ms) rollback transaction
69678
+  (0.0ms) begin transaction
69679
+ -------------------------------------------------------
69680
+ PostProcessorsTest: test_processing_scripts_should_work
69681
+ -------------------------------------------------------
69682
+  (0.1ms) rollback transaction
69683
+  (0.1ms) begin transaction
69684
+ -----------------------------------------------------------
69685
+ PostProcessorsTest: test_processing_stylesheets_should_work
69686
+ -----------------------------------------------------------
69687
+  (0.0ms) rollback transaction
69688
+  (0.0ms) begin transaction
69689
+ -------------------------------------------------------------------------------------------
69690
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69691
+ -------------------------------------------------------------------------------------------
69692
+ Processing by DummyController#index as HTML
69693
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
69694
+  (0.1ms) rollback transaction
69695
+  (0.1ms) begin transaction
69696
+ ---------------------------------------------------------------------------------
69697
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69698
+ ---------------------------------------------------------------------------------
69699
+ Processing by DummyController#assets as HTML
69700
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69701
+  (0.1ms) rollback transaction
69702
+  (0.1ms) begin transaction
69703
+ ----------------------------------------------------------
69704
+ CompressorsTest: test_compressor_should_remove_blank_lines
69705
+ ----------------------------------------------------------
69706
+  (0.0ms) rollback transaction
69707
+  (0.0ms) begin transaction
69708
+ -----------------------------------------------------------
69709
+ CompressorsTest: test_compressor_should_remove_css_comments
69710
+ -----------------------------------------------------------
69711
+  (0.0ms) rollback transaction
69712
+  (0.1ms) begin transaction
69713
+ ------------------------------------------------------------
69714
+ CompressorsTest: test_compressor_should_remove_html_comments
69715
+ ------------------------------------------------------------
69716
+  (0.0ms) rollback transaction
69717
+  (0.0ms) begin transaction
69718
+ -----------------------------------------------------------------------------
69719
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69720
+ -----------------------------------------------------------------------------
69721
+  (0.1ms) rollback transaction
69722
+  (0.0ms) begin transaction
69723
+ ------------------------------------------------------------------------------
69724
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69725
+ ------------------------------------------------------------------------------
69726
+  (0.0ms) rollback transaction
69727
+  (0.0ms) begin transaction
69728
+ -------------------------------------
69729
+ Helpers: test_html_import_should_work
69730
+ -------------------------------------
69731
+  (0.0ms) rollback transaction
69732
+  (0.0ms) begin transaction
69733
+ -------------------------------------------------------
69734
+ PostProcessorsTest: test_processing_imports_should_work
69735
+ -------------------------------------------------------
69736
+  (0.0ms) rollback transaction
69737
+  (0.0ms) begin transaction
69738
+ -------------------------------------------------------
69739
+ PostProcessorsTest: test_processing_scripts_should_work
69740
+ -------------------------------------------------------
69741
+  (0.0ms) rollback transaction
69742
+  (0.0ms) begin transaction
69743
+ -----------------------------------------------------------
69744
+ PostProcessorsTest: test_processing_stylesheets_should_work
69745
+ -----------------------------------------------------------
69746
+  (0.0ms) rollback transaction
69747
+  (0.0ms) begin transaction
69748
+ -------------------------------------------------------------------------------------------
69749
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69750
+ -------------------------------------------------------------------------------------------
69751
+ Processing by DummyController#index as HTML
69752
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
69753
+  (0.1ms) rollback transaction
69754
+  (0.0ms) begin transaction
69755
+ ---------------------------------------------------------------------------------
69756
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69757
+ ---------------------------------------------------------------------------------
69758
+ Processing by DummyController#assets as HTML
69759
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69760
+  (0.1ms) rollback transaction
69761
+  (0.1ms) begin transaction
69762
+ ----------------------------------------------------------
69763
+ CompressorsTest: test_compressor_should_remove_blank_lines
69764
+ ----------------------------------------------------------
69765
+  (0.0ms) rollback transaction
69766
+  (0.0ms) begin transaction
69767
+ -----------------------------------------------------------
69768
+ CompressorsTest: test_compressor_should_remove_css_comments
69769
+ -----------------------------------------------------------
69770
+  (0.0ms) rollback transaction
69771
+  (0.1ms) begin transaction
69772
+ ------------------------------------------------------------
69773
+ CompressorsTest: test_compressor_should_remove_html_comments
69774
+ ------------------------------------------------------------
69775
+  (0.0ms) rollback transaction
69776
+  (0.1ms) begin transaction
69777
+ -----------------------------------------------------------------------------
69778
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69779
+ -----------------------------------------------------------------------------
69780
+  (0.0ms) rollback transaction
69781
+  (0.0ms) begin transaction
69782
+ ------------------------------------------------------------------------------
69783
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69784
+ ------------------------------------------------------------------------------
69785
+  (0.0ms) rollback transaction
69786
+  (0.0ms) begin transaction
69787
+ -------------------------------------
69788
+ Helpers: test_html_import_should_work
69789
+ -------------------------------------
69790
+  (0.0ms) rollback transaction
69791
+  (0.0ms) begin transaction
69792
+ -------------------------------------------------------------------------------------------
69793
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69794
+ -------------------------------------------------------------------------------------------
69795
+ Processing by DummyController#index as HTML
69796
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
69797
+  (0.1ms) rollback transaction
69798
+  (0.1ms) begin transaction
69799
+ ---------------------------------------------------------------------------------
69800
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69801
+ ---------------------------------------------------------------------------------
69802
+ Processing by DummyController#assets as HTML
69803
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69804
+  (0.1ms) rollback transaction
69805
+  (0.1ms) begin transaction
69806
+ -------------------------------------------------------
69807
+ PostProcessorsTest: test_processing_imports_should_work
69808
+ -------------------------------------------------------
69809
+  (0.1ms) rollback transaction
69810
+  (0.0ms) begin transaction
69811
+ -------------------------------------------------------
69812
+ PostProcessorsTest: test_processing_scripts_should_work
69813
+ -------------------------------------------------------
69814
+  (0.0ms) rollback transaction
69815
+  (0.0ms) begin transaction
69816
+ -----------------------------------------------------------
69817
+ PostProcessorsTest: test_processing_stylesheets_should_work
69818
+ -----------------------------------------------------------
69819
+  (0.0ms) rollback transaction
69820
+  (0.1ms) begin transaction
69821
+ -------------------------------------------------------------------------------------------
69822
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69823
+ -------------------------------------------------------------------------------------------
69824
+ Processing by DummyController#index as HTML
69825
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
69826
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
69827
+  (0.1ms) rollback transaction
69828
+  (0.1ms) begin transaction
69829
+ ---------------------------------------------------------------------------------
69830
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69831
+ ---------------------------------------------------------------------------------
69832
+ Processing by DummyController#assets as HTML
69833
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69834
+  (0.1ms) rollback transaction
69835
+  (0.0ms) begin transaction
69836
+ ----------------------------------------------------------
69837
+ CompressorsTest: test_compressor_should_remove_blank_lines
69838
+ ----------------------------------------------------------
69839
+  (0.0ms) rollback transaction
69840
+  (0.0ms) begin transaction
69841
+ -----------------------------------------------------------
69842
+ CompressorsTest: test_compressor_should_remove_css_comments
69843
+ -----------------------------------------------------------
69844
+  (0.0ms) rollback transaction
69845
+  (0.0ms) begin transaction
69846
+ ------------------------------------------------------------
69847
+ CompressorsTest: test_compressor_should_remove_html_comments
69848
+ ------------------------------------------------------------
69849
+  (0.1ms) rollback transaction
69850
+  (0.0ms) begin transaction
69851
+ -----------------------------------------------------------------------------
69852
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69853
+ -----------------------------------------------------------------------------
69854
+  (0.0ms) rollback transaction
69855
+  (0.0ms) begin transaction
69856
+ ------------------------------------------------------------------------------
69857
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69858
+ ------------------------------------------------------------------------------
69859
+  (0.0ms) rollback transaction
69860
+  (0.0ms) begin transaction
69861
+ -------------------------------------------------------
69862
+ PostProcessorsTest: test_processing_imports_should_work
69863
+ -------------------------------------------------------
69864
+  (0.0ms) rollback transaction
69865
+  (0.0ms) begin transaction
69866
+ -------------------------------------------------------
69867
+ PostProcessorsTest: test_processing_scripts_should_work
69868
+ -------------------------------------------------------
69869
+  (0.0ms) rollback transaction
69870
+  (0.0ms) begin transaction
69871
+ -----------------------------------------------------------
69872
+ PostProcessorsTest: test_processing_stylesheets_should_work
69873
+ -----------------------------------------------------------
69874
+  (0.0ms) rollback transaction
69875
+  (0.1ms) begin transaction
69876
+ -------------------------------------
69877
+ Helpers: test_html_import_should_work
69878
+ -------------------------------------
69879
+  (0.0ms) rollback transaction
69880
+  (0.1ms) begin transaction
69881
+ -------------------------------------------------------------------------------------------
69882
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69883
+ -------------------------------------------------------------------------------------------
69884
+ Processing by DummyController#index as HTML
69885
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
69886
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
69887
+  (0.1ms) rollback transaction
69888
+  (0.0ms) begin transaction
69889
+ ---------------------------------------------------------------------------------
69890
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69891
+ ---------------------------------------------------------------------------------
69892
+ Processing by DummyController#assets as HTML
69893
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69894
+  (0.1ms) rollback transaction
69895
+  (0.0ms) begin transaction
69896
+ -------------------------------------
69897
+ Helpers: test_html_import_should_work
69898
+ -------------------------------------
69899
+  (0.0ms) rollback transaction
69900
+  (0.1ms) begin transaction
69901
+ ----------------------------------------------------------
69902
+ CompressorsTest: test_compressor_should_remove_blank_lines
69903
+ ----------------------------------------------------------
69904
+  (0.0ms) rollback transaction
69905
+  (0.0ms) begin transaction
69906
+ -----------------------------------------------------------
69907
+ CompressorsTest: test_compressor_should_remove_css_comments
69908
+ -----------------------------------------------------------
69909
+  (0.0ms) rollback transaction
69910
+  (0.0ms) begin transaction
69911
+ ------------------------------------------------------------
69912
+ CompressorsTest: test_compressor_should_remove_html_comments
69913
+ ------------------------------------------------------------
69914
+  (0.0ms) rollback transaction
69915
+  (0.0ms) begin transaction
69916
+ -----------------------------------------------------------------------------
69917
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69918
+ -----------------------------------------------------------------------------
69919
+  (0.0ms) rollback transaction
69920
+  (0.0ms) begin transaction
69921
+ ------------------------------------------------------------------------------
69922
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69923
+ ------------------------------------------------------------------------------
69924
+  (0.0ms) rollback transaction
69925
+  (0.1ms) begin transaction
69926
+ -------------------------------------------------------
69927
+ PostProcessorsTest: test_processing_imports_should_work
69928
+ -------------------------------------------------------
69929
+  (0.1ms) rollback transaction
69930
+  (0.0ms) begin transaction
69931
+ -------------------------------------------------------
69932
+ PostProcessorsTest: test_processing_scripts_should_work
69933
+ -------------------------------------------------------
69934
+  (0.1ms) rollback transaction
69935
+  (0.1ms) begin transaction
69936
+ -----------------------------------------------------------
69937
+ PostProcessorsTest: test_processing_stylesheets_should_work
69938
+ -----------------------------------------------------------
69939
+  (0.1ms) rollback transaction
69940
+  (0.1ms) begin transaction
69941
+ -------------------------------------------------------
69942
+ PostProcessorsTest: test_processing_imports_should_work
69943
+ -------------------------------------------------------
69944
+  (0.1ms) rollback transaction
69945
+  (0.0ms) begin transaction
69946
+ -------------------------------------------------------
69947
+ PostProcessorsTest: test_processing_scripts_should_work
69948
+ -------------------------------------------------------
69949
+  (0.1ms) rollback transaction
69950
+  (0.0ms) begin transaction
69951
+ -----------------------------------------------------------
69952
+ PostProcessorsTest: test_processing_stylesheets_should_work
69953
+ -----------------------------------------------------------
69954
+  (0.1ms) rollback transaction
69955
+  (0.1ms) begin transaction
69956
+ ----------------------------------------------------------
69957
+ CompressorsTest: test_compressor_should_remove_blank_lines
69958
+ ----------------------------------------------------------
69959
+  (0.0ms) rollback transaction
69960
+  (0.0ms) begin transaction
69961
+ -----------------------------------------------------------
69962
+ CompressorsTest: test_compressor_should_remove_css_comments
69963
+ -----------------------------------------------------------
69964
+  (0.0ms) rollback transaction
69965
+  (0.0ms) begin transaction
69966
+ ------------------------------------------------------------
69967
+ CompressorsTest: test_compressor_should_remove_html_comments
69968
+ ------------------------------------------------------------
69969
+  (0.0ms) rollback transaction
69970
+  (0.0ms) begin transaction
69971
+ -----------------------------------------------------------------------------
69972
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
69973
+ -----------------------------------------------------------------------------
69974
+  (0.0ms) rollback transaction
69975
+  (0.0ms) begin transaction
69976
+ ------------------------------------------------------------------------------
69977
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
69978
+ ------------------------------------------------------------------------------
69979
+  (0.0ms) rollback transaction
69980
+  (0.1ms) begin transaction
69981
+ -------------------------------------
69982
+ Helpers: test_html_import_should_work
69983
+ -------------------------------------
69984
+  (0.1ms) rollback transaction
69985
+  (0.0ms) begin transaction
69986
+ -------------------------------------------------------------------------------------------
69987
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
69988
+ -------------------------------------------------------------------------------------------
69989
+ Processing by DummyController#index as HTML
69990
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
69991
+  (0.1ms) rollback transaction
69992
+  (0.0ms) begin transaction
69993
+ ---------------------------------------------------------------------------------
69994
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
69995
+ ---------------------------------------------------------------------------------
69996
+ Processing by DummyController#assets as HTML
69997
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69998
+  (0.1ms) rollback transaction
69999
+  (0.1ms) begin transaction
70000
+ -------------------------------------
70001
+ Helpers: test_html_import_should_work
70002
+ -------------------------------------
70003
+  (0.0ms) rollback transaction
70004
+  (0.0ms) begin transaction
70005
+ ----------------------------------------------------------
70006
+ CompressorsTest: test_compressor_should_remove_blank_lines
70007
+ ----------------------------------------------------------
70008
+  (0.0ms) rollback transaction
70009
+  (0.0ms) begin transaction
70010
+ -----------------------------------------------------------
70011
+ CompressorsTest: test_compressor_should_remove_css_comments
70012
+ -----------------------------------------------------------
70013
+  (0.0ms) rollback transaction
70014
+  (0.0ms) begin transaction
70015
+ ------------------------------------------------------------
70016
+ CompressorsTest: test_compressor_should_remove_html_comments
70017
+ ------------------------------------------------------------
70018
+  (0.0ms) rollback transaction
70019
+  (0.0ms) begin transaction
70020
+ -----------------------------------------------------------------------------
70021
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70022
+ -----------------------------------------------------------------------------
70023
+  (0.0ms) rollback transaction
70024
+  (0.0ms) begin transaction
70025
+ ------------------------------------------------------------------------------
70026
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70027
+ ------------------------------------------------------------------------------
70028
+  (0.0ms) rollback transaction
70029
+  (0.0ms) begin transaction
70030
+ -------------------------------------------------------
70031
+ PostProcessorsTest: test_processing_imports_should_work
70032
+ -------------------------------------------------------
70033
+  (0.0ms) rollback transaction
70034
+  (0.0ms) begin transaction
70035
+ -------------------------------------------------------
70036
+ PostProcessorsTest: test_processing_scripts_should_work
70037
+ -------------------------------------------------------
70038
+  (0.0ms) rollback transaction
70039
+  (0.0ms) begin transaction
70040
+ -----------------------------------------------------------
70041
+ PostProcessorsTest: test_processing_stylesheets_should_work
70042
+ -----------------------------------------------------------
70043
+  (0.0ms) rollback transaction
70044
+  (0.0ms) begin transaction
70045
+ -------------------------------------------------------------------------------------------
70046
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70047
+ -------------------------------------------------------------------------------------------
70048
+ Processing by DummyController#index as HTML
70049
+ Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
70050
+  (0.1ms) rollback transaction
70051
+  (0.0ms) begin transaction
70052
+ ---------------------------------------------------------------------------------
70053
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70054
+ ---------------------------------------------------------------------------------
70055
+ Processing by DummyController#assets as HTML
70056
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70057
+  (0.1ms) rollback transaction
70058
+  (0.1ms) begin transaction
70059
+ ----------------------------------------------------------
70060
+ CompressorsTest: test_compressor_should_remove_blank_lines
70061
+ ----------------------------------------------------------
70062
+  (0.0ms) rollback transaction
70063
+  (0.1ms) begin transaction
70064
+ -----------------------------------------------------------
70065
+ CompressorsTest: test_compressor_should_remove_css_comments
70066
+ -----------------------------------------------------------
70067
+  (0.0ms) rollback transaction
70068
+  (0.1ms) begin transaction
70069
+ ------------------------------------------------------------
70070
+ CompressorsTest: test_compressor_should_remove_html_comments
70071
+ ------------------------------------------------------------
70072
+  (0.0ms) rollback transaction
70073
+  (0.0ms) begin transaction
70074
+ -----------------------------------------------------------------------------
70075
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70076
+ -----------------------------------------------------------------------------
70077
+  (0.0ms) rollback transaction
70078
+  (0.0ms) begin transaction
70079
+ ------------------------------------------------------------------------------
70080
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70081
+ ------------------------------------------------------------------------------
70082
+  (0.0ms) rollback transaction
70083
+  (0.0ms) begin transaction
70084
+ -------------------------------------------------------------------------------------------
70085
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70086
+ -------------------------------------------------------------------------------------------
70087
+ Processing by DummyController#index as HTML
70088
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
70089
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
70090
+  (0.1ms) rollback transaction
70091
+  (0.1ms) begin transaction
70092
+ ---------------------------------------------------------------------------------
70093
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70094
+ ---------------------------------------------------------------------------------
70095
+ Processing by DummyController#assets as HTML
70096
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70097
+  (0.1ms) rollback transaction
70098
+  (0.0ms) begin transaction
70099
+ -------------------------------------------------------
70100
+ PostProcessorsTest: test_processing_imports_should_work
70101
+ -------------------------------------------------------
70102
+  (0.0ms) rollback transaction
70103
+  (0.0ms) begin transaction
70104
+ -------------------------------------------------------
70105
+ PostProcessorsTest: test_processing_scripts_should_work
70106
+ -------------------------------------------------------
70107
+  (0.1ms) rollback transaction
70108
+  (0.1ms) begin transaction
70109
+ -----------------------------------------------------------
70110
+ PostProcessorsTest: test_processing_stylesheets_should_work
70111
+ -----------------------------------------------------------
70112
+  (0.2ms) rollback transaction
70113
+  (0.0ms) begin transaction
70114
+ -------------------------------------
70115
+ Helpers: test_html_import_should_work
70116
+ -------------------------------------
70117
+  (0.1ms) rollback transaction
70118
+  (0.1ms) begin transaction
70119
+ -------------------------------------------------------------------------------------------
70120
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70121
+ -------------------------------------------------------------------------------------------
70122
+ Processing by DummyController#index as HTML
70123
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
70124
+ Completed 500 Internal Server Error in 38ms
70125
+  (0.1ms) rollback transaction
70126
+  (0.0ms) begin transaction
70127
+ ---------------------------------------------------------------------------------
70128
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70129
+ ---------------------------------------------------------------------------------
70130
+ Processing by DummyController#assets as HTML
70131
+ Completed 500 Internal Server Error in 6ms
70132
+  (0.1ms) rollback transaction
70133
+  (0.0ms) begin transaction
70134
+ ----------------------------------------------------------
70135
+ CompressorsTest: test_compressor_should_remove_blank_lines
70136
+ ----------------------------------------------------------
70137
+  (0.0ms) rollback transaction
70138
+  (0.0ms) begin transaction
70139
+ -----------------------------------------------------------
70140
+ CompressorsTest: test_compressor_should_remove_css_comments
70141
+ -----------------------------------------------------------
70142
+  (0.0ms) rollback transaction
70143
+  (0.0ms) begin transaction
70144
+ ------------------------------------------------------------
70145
+ CompressorsTest: test_compressor_should_remove_html_comments
70146
+ ------------------------------------------------------------
70147
+  (0.1ms) rollback transaction
70148
+  (0.0ms) begin transaction
70149
+ -----------------------------------------------------------------------------
70150
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70151
+ -----------------------------------------------------------------------------
70152
+  (0.0ms) rollback transaction
70153
+  (0.0ms) begin transaction
70154
+ ------------------------------------------------------------------------------
70155
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70156
+ ------------------------------------------------------------------------------
70157
+  (0.0ms) rollback transaction
70158
+  (0.0ms) begin transaction
70159
+ -------------------------------------
70160
+ Helpers: test_html_import_should_work
70161
+ -------------------------------------
70162
+  (0.0ms) rollback transaction
70163
+  (0.0ms) begin transaction
70164
+ -------------------------------------------------------
70165
+ PostProcessorsTest: test_processing_imports_should_work
70166
+ -------------------------------------------------------
70167
+  (0.0ms) rollback transaction
70168
+  (0.0ms) begin transaction
70169
+ -------------------------------------------------------
70170
+ PostProcessorsTest: test_processing_scripts_should_work
70171
+ -------------------------------------------------------
70172
+  (0.0ms) rollback transaction
70173
+  (0.0ms) begin transaction
70174
+ -----------------------------------------------------------
70175
+ PostProcessorsTest: test_processing_stylesheets_should_work
70176
+ -----------------------------------------------------------
70177
+  (0.0ms) rollback transaction
70178
+  (0.1ms) begin transaction
70179
+ -------------------------------------------------------------------------------------------
70180
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70181
+ -------------------------------------------------------------------------------------------
70182
+ Processing by DummyController#index as HTML
70183
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
70184
+ Completed 500 Internal Server Error in 202ms
70185
+  (0.2ms) rollback transaction
70186
+  (0.1ms) begin transaction
70187
+ ---------------------------------------------------------------------------------
70188
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70189
+ ---------------------------------------------------------------------------------
70190
+ Processing by DummyController#assets as HTML
70191
+ Completed 500 Internal Server Error in 10ms
70192
+  (0.1ms) rollback transaction
70193
+  (0.1ms) begin transaction
70194
+ -------------------------------------------------------
70195
+ PostProcessorsTest: test_processing_imports_should_work
70196
+ -------------------------------------------------------
70197
+  (0.0ms) rollback transaction
70198
+  (0.0ms) begin transaction
70199
+ -------------------------------------------------------
70200
+ PostProcessorsTest: test_processing_scripts_should_work
70201
+ -------------------------------------------------------
70202
+  (0.0ms) rollback transaction
70203
+  (0.1ms) begin transaction
70204
+ -----------------------------------------------------------
70205
+ PostProcessorsTest: test_processing_stylesheets_should_work
70206
+ -----------------------------------------------------------
70207
+  (0.0ms) rollback transaction
70208
+  (0.1ms) begin transaction
70209
+ -------------------------------------
70210
+ Helpers: test_html_import_should_work
70211
+ -------------------------------------
70212
+  (0.0ms) rollback transaction
70213
+  (0.0ms) begin transaction
70214
+ ----------------------------------------------------------
70215
+ CompressorsTest: test_compressor_should_remove_blank_lines
70216
+ ----------------------------------------------------------
70217
+  (0.0ms) rollback transaction
70218
+  (0.0ms) begin transaction
70219
+ -----------------------------------------------------------
70220
+ CompressorsTest: test_compressor_should_remove_css_comments
70221
+ -----------------------------------------------------------
70222
+  (0.0ms) rollback transaction
70223
+  (0.1ms) begin transaction
70224
+ ------------------------------------------------------------
70225
+ CompressorsTest: test_compressor_should_remove_html_comments
70226
+ ------------------------------------------------------------
70227
+  (0.0ms) rollback transaction
70228
+  (0.1ms) begin transaction
70229
+ -----------------------------------------------------------------------------
70230
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70231
+ -----------------------------------------------------------------------------
70232
+  (0.0ms) rollback transaction
70233
+  (0.1ms) begin transaction
70234
+ ------------------------------------------------------------------------------
70235
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70236
+ ------------------------------------------------------------------------------
70237
+  (0.0ms) rollback transaction
70238
+  (0.1ms) begin transaction
70239
+ -------------------------------------------------------------------------------------------
70240
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70241
+ -------------------------------------------------------------------------------------------
70242
+ Processing by DummyController#index as HTML
70243
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
70244
+ Completed 200 OK in 221ms (Views: 221.1ms | ActiveRecord: 0.0ms)
70245
+  (0.1ms) rollback transaction
70246
+  (0.1ms) begin transaction
70247
+ ---------------------------------------------------------------------------------
70248
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70249
+ ---------------------------------------------------------------------------------
70250
+ Processing by DummyController#assets as HTML
70251
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70252
+  (0.1ms) rollback transaction
70253
+  (0.0ms) begin transaction
70254
+ -------------------------------------------------------
70255
+ PostProcessorsTest: test_processing_imports_should_work
70256
+ -------------------------------------------------------
70257
+  (0.0ms) rollback transaction
70258
+  (0.1ms) begin transaction
70259
+ -------------------------------------------------------
70260
+ PostProcessorsTest: test_processing_scripts_should_work
70261
+ -------------------------------------------------------
70262
+  (0.0ms) rollback transaction
70263
+  (0.0ms) begin transaction
70264
+ -----------------------------------------------------------
70265
+ PostProcessorsTest: test_processing_stylesheets_should_work
70266
+ -----------------------------------------------------------
70267
+  (0.0ms) rollback transaction
70268
+  (0.0ms) begin transaction
70269
+ ----------------------------------------------------------
70270
+ CompressorsTest: test_compressor_should_remove_blank_lines
70271
+ ----------------------------------------------------------
70272
+  (0.0ms) rollback transaction
70273
+  (0.0ms) begin transaction
70274
+ -----------------------------------------------------------
70275
+ CompressorsTest: test_compressor_should_remove_css_comments
70276
+ -----------------------------------------------------------
70277
+  (0.0ms) rollback transaction
70278
+  (0.0ms) begin transaction
70279
+ ------------------------------------------------------------
70280
+ CompressorsTest: test_compressor_should_remove_html_comments
70281
+ ------------------------------------------------------------
70282
+  (0.0ms) rollback transaction
70283
+  (0.1ms) begin transaction
70284
+ -----------------------------------------------------------------------------
70285
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70286
+ -----------------------------------------------------------------------------
70287
+  (0.1ms) rollback transaction
70288
+  (0.1ms) begin transaction
70289
+ ------------------------------------------------------------------------------
70290
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70291
+ ------------------------------------------------------------------------------
70292
+  (0.0ms) rollback transaction
70293
+  (0.1ms) begin transaction
70294
+ -------------------------------------
70295
+ Helpers: test_html_import_should_work
70296
+ -------------------------------------
70297
+  (0.0ms) rollback transaction
70298
+  (0.1ms) begin transaction
70299
+ -------------------------------------------------------------------------------------------
70300
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70301
+ -------------------------------------------------------------------------------------------
70302
+ Processing by DummyController#index as HTML
70303
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
70304
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
70305
+  (0.1ms) rollback transaction
70306
+  (0.0ms) begin transaction
70307
+ ---------------------------------------------------------------------------------
70308
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70309
+ ---------------------------------------------------------------------------------
70310
+ Processing by DummyController#assets as HTML
70311
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70312
+  (0.1ms) rollback transaction
70313
+  (0.1ms) begin transaction
70314
+ -------------------------------------
70315
+ Helpers: test_html_import_should_work
70316
+ -------------------------------------
70317
+  (0.0ms) rollback transaction
70318
+  (0.0ms) begin transaction
70319
+ ----------------------------------------------------------
70320
+ CompressorsTest: test_compressor_should_remove_blank_lines
70321
+ ----------------------------------------------------------
70322
+  (0.0ms) rollback transaction
70323
+  (0.0ms) begin transaction
70324
+ -----------------------------------------------------------
70325
+ CompressorsTest: test_compressor_should_remove_css_comments
70326
+ -----------------------------------------------------------
70327
+  (0.0ms) rollback transaction
70328
+  (0.0ms) begin transaction
70329
+ ------------------------------------------------------------
70330
+ CompressorsTest: test_compressor_should_remove_html_comments
70331
+ ------------------------------------------------------------
70332
+  (0.0ms) rollback transaction
70333
+  (0.0ms) begin transaction
70334
+ -----------------------------------------------------------------------------
70335
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70336
+ -----------------------------------------------------------------------------
70337
+  (0.0ms) rollback transaction
70338
+  (0.0ms) begin transaction
70339
+ ------------------------------------------------------------------------------
70340
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70341
+ ------------------------------------------------------------------------------
70342
+  (0.0ms) rollback transaction
70343
+  (0.1ms) begin transaction
70344
+ -------------------------------------------------------
70345
+ PostProcessorsTest: test_processing_imports_should_work
70346
+ -------------------------------------------------------
70347
+  (0.0ms) rollback transaction
70348
+  (0.0ms) begin transaction
70349
+ -------------------------------------------------------
70350
+ PostProcessorsTest: test_processing_scripts_should_work
70351
+ -------------------------------------------------------
70352
+  (0.0ms) rollback transaction
70353
+  (0.0ms) begin transaction
70354
+ -----------------------------------------------------------
70355
+ PostProcessorsTest: test_processing_stylesheets_should_work
70356
+ -----------------------------------------------------------
70357
+  (0.0ms) rollback transaction
70358
+  (0.1ms) begin transaction
70359
+ -------------------------------------------------------
70360
+ PostProcessorsTest: test_processing_imports_should_work
70361
+ -------------------------------------------------------
70362
+  (0.1ms) rollback transaction
70363
+  (0.0ms) begin transaction
70364
+ -------------------------------------------------------
70365
+ PostProcessorsTest: test_processing_scripts_should_work
70366
+ -------------------------------------------------------
70367
+  (0.0ms) rollback transaction
70368
+  (0.0ms) begin transaction
70369
+ -----------------------------------------------------------
70370
+ PostProcessorsTest: test_processing_stylesheets_should_work
70371
+ -----------------------------------------------------------
70372
+  (0.0ms) rollback transaction
70373
+  (0.0ms) begin transaction
70374
+ -------------------------------------------------------------------------------------------
70375
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70376
+ -------------------------------------------------------------------------------------------
70377
+ Processing by DummyController#index as HTML
70378
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
70379
+ Completed 200 OK in 201ms (Views: 200.8ms | ActiveRecord: 0.0ms)
70380
+  (0.1ms) rollback transaction
70381
+  (0.1ms) begin transaction
70382
+ ---------------------------------------------------------------------------------
70383
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70384
+ ---------------------------------------------------------------------------------
70385
+ Processing by DummyController#assets as HTML
70386
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70387
+  (0.1ms) rollback transaction
70388
+  (0.1ms) begin transaction
70389
+ -------------------------------------
70390
+ Helpers: test_html_import_should_work
70391
+ -------------------------------------
70392
+  (0.0ms) rollback transaction
70393
+  (0.0ms) begin transaction
70394
+ ----------------------------------------------------------
70395
+ CompressorsTest: test_compressor_should_remove_blank_lines
70396
+ ----------------------------------------------------------
70397
+  (0.0ms) rollback transaction
70398
+  (0.0ms) begin transaction
70399
+ -----------------------------------------------------------
70400
+ CompressorsTest: test_compressor_should_remove_css_comments
70401
+ -----------------------------------------------------------
70402
+  (0.0ms) rollback transaction
70403
+  (0.1ms) begin transaction
70404
+ ------------------------------------------------------------
70405
+ CompressorsTest: test_compressor_should_remove_html_comments
70406
+ ------------------------------------------------------------
70407
+  (0.0ms) rollback transaction
70408
+  (0.0ms) begin transaction
70409
+ -----------------------------------------------------------------------------
70410
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70411
+ -----------------------------------------------------------------------------
70412
+  (0.0ms) rollback transaction
70413
+  (0.1ms) begin transaction
70414
+ ------------------------------------------------------------------------------
70415
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70416
+ ------------------------------------------------------------------------------
70417
+  (0.1ms) rollback transaction
70418
+  (0.1ms) begin transaction
70419
+ -------------------------------------
70420
+ Helpers: test_html_import_should_work
70421
+ -------------------------------------
70422
+  (0.0ms) rollback transaction
70423
+  (0.0ms) begin transaction
70424
+ -------------------------------------------------------------------------------------------
70425
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70426
+ -------------------------------------------------------------------------------------------
70427
+ Processing by DummyController#index as HTML
70428
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
70429
+  (0.1ms) rollback transaction
70430
+  (0.0ms) begin transaction
70431
+ ---------------------------------------------------------------------------------
70432
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70433
+ ---------------------------------------------------------------------------------
70434
+ Processing by DummyController#assets as HTML
70435
+ Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70436
+  (0.1ms) rollback transaction
70437
+  (0.1ms) begin transaction
70438
+ -------------------------------------------------------
70439
+ PostProcessorsTest: test_processing_imports_should_work
70440
+ -------------------------------------------------------
70441
+  (0.0ms) rollback transaction
70442
+  (0.0ms) begin transaction
70443
+ -------------------------------------------------------
70444
+ PostProcessorsTest: test_processing_scripts_should_work
70445
+ -------------------------------------------------------
70446
+  (0.1ms) rollback transaction
70447
+  (0.0ms) begin transaction
70448
+ -----------------------------------------------------------
70449
+ PostProcessorsTest: test_processing_stylesheets_should_work
70450
+ -----------------------------------------------------------
70451
+  (0.1ms) rollback transaction
70452
+  (0.1ms) begin transaction
70453
+ ----------------------------------------------------------
70454
+ CompressorsTest: test_compressor_should_remove_blank_lines
70455
+ ----------------------------------------------------------
70456
+  (0.1ms) rollback transaction
70457
+  (0.0ms) begin transaction
70458
+ -----------------------------------------------------------
70459
+ CompressorsTest: test_compressor_should_remove_css_comments
70460
+ -----------------------------------------------------------
70461
+  (0.0ms) rollback transaction
70462
+  (0.0ms) begin transaction
70463
+ ------------------------------------------------------------
70464
+ CompressorsTest: test_compressor_should_remove_html_comments
70465
+ ------------------------------------------------------------
70466
+  (0.0ms) rollback transaction
70467
+  (0.0ms) begin transaction
70468
+ -----------------------------------------------------------------------------
70469
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70470
+ -----------------------------------------------------------------------------
70471
+  (0.0ms) rollback transaction
70472
+  (0.0ms) begin transaction
70473
+ ------------------------------------------------------------------------------
70474
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70475
+ ------------------------------------------------------------------------------
70476
+  (0.0ms) rollback transaction
70477
+  (0.1ms) begin transaction
70478
+ ----------------------------------------------------------
70479
+ CompressorsTest: test_compressor_should_remove_blank_lines
70480
+ ----------------------------------------------------------
70481
+  (0.0ms) rollback transaction
70482
+  (0.0ms) begin transaction
70483
+ -----------------------------------------------------------
70484
+ CompressorsTest: test_compressor_should_remove_css_comments
70485
+ -----------------------------------------------------------
70486
+  (0.0ms) rollback transaction
70487
+  (0.0ms) begin transaction
70488
+ ------------------------------------------------------------
70489
+ CompressorsTest: test_compressor_should_remove_html_comments
70490
+ ------------------------------------------------------------
70491
+  (0.0ms) rollback transaction
70492
+  (0.0ms) begin transaction
70493
+ -----------------------------------------------------------------------------
70494
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
70495
+ -----------------------------------------------------------------------------
70496
+  (0.0ms) rollback transaction
70497
+  (0.1ms) begin transaction
70498
+ ------------------------------------------------------------------------------
70499
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
70500
+ ------------------------------------------------------------------------------
70501
+  (0.1ms) rollback transaction
70502
+  (0.0ms) begin transaction
70503
+ -------------------------------------
70504
+ Helpers: test_html_import_should_work
70505
+ -------------------------------------
70506
+  (0.0ms) rollback transaction
70507
+  (0.0ms) begin transaction
70508
+ -------------------------------------------------------------------------------------------
70509
+ DummyAppIntegrationTest: test_the_compiled_assets_should_be_served_from_the_right_directory
70510
+ -------------------------------------------------------------------------------------------
70511
+ Processing by DummyController#index as HTML
70512
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
70513
+  (0.1ms) rollback transaction
70514
+  (0.1ms) begin transaction
70515
+ ---------------------------------------------------------------------------------
70516
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
70517
+ ---------------------------------------------------------------------------------
70518
+ Processing by DummyController#assets as HTML
70519
+ Completed 200 OK in 6ms (Views: 0.1ms | ActiveRecord: 0.0ms)
70520
+  (0.1ms) rollback transaction
70521
+  (0.1ms) begin transaction
70522
+ -------------------------------------------------------
70523
+ PostProcessorsTest: test_processing_imports_should_work
70524
+ -------------------------------------------------------
70525
+  (0.1ms) rollback transaction
70526
+  (0.0ms) begin transaction
70527
+ -------------------------------------------------------
70528
+ PostProcessorsTest: test_processing_scripts_should_work
70529
+ -------------------------------------------------------
70530
+  (0.0ms) rollback transaction
70531
+  (0.0ms) begin transaction
70532
+ -----------------------------------------------------------
70533
+ PostProcessorsTest: test_processing_stylesheets_should_work
70534
+ -----------------------------------------------------------
70535
+  (0.0ms) rollback transaction