emcee 1.0.8 → 1.0.9

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: d474cd9e27942c7d92f8053e72b8cb68d2c177a8
4
- data.tar.gz: 6a97ad164cef8a648be8406364c35d78fff06295
3
+ metadata.gz: ca99870c92263d056b7da94e1413a52563092437
4
+ data.tar.gz: 5a44160c4601462cc22749791c69b7f86c3b537b
5
5
  SHA512:
6
- metadata.gz: 57e788a337bbfeb6590883367e2f220b825903559aac360960a6871894e8018149359741be6522b511d39fe5962976ba25bd8f5ab19a4e42dd5c97c3fa37aa22
7
- data.tar.gz: b22271d68a3e6c0b402245feec2612a7bd4da876e2c90cf84e7474f59a5f4dd104e1b61e249eb5437a647f99f543c9ff29d30a235da686949d6268af965eaaa7
6
+ metadata.gz: 79b5b39268033430fc29bda6422db4718799b9f4332e9e15ecba27eecaf38a39e3f63a3bdf2aac9ede129b4a284e2c105f3384cadfa2df7eff84343978a63ba8
7
+ data.tar.gz: 24b8f6b4dd8982cf9da49b456088fc41574fc8978944486d634d5ce10de7725c57ab0620b291fdb85cbb1004863a20fde50fc796599ad254fe7ca361c85fc408
@@ -18,10 +18,18 @@ module Emcee
18
18
  doc.script_references.each do |node|
19
19
  path = @resolver.absolute_path(node.path)
20
20
  return unless @resolver.should_inline?(path)
21
- content = @resolver.evaluate(path)
22
- node.replace("script", content)
21
+ script = @resolver.evaluate(path)
22
+ node.replace("script", escape_with_slash(script))
23
23
  end
24
24
  end
25
+
26
+ def escape_with_slash(script)
27
+ script = script.sub('<!--', '<!\\--')
28
+ script.gsub!(/<\/\s*script/i) do |match|
29
+ match.sub '</', '<\\/'
30
+ end
31
+ script
32
+ end
25
33
  end
26
34
  end
27
35
  end
@@ -1,3 +1,3 @@
1
1
  module Emcee
2
- VERSION = "1.0.8"
2
+ VERSION = "1.0.9"
3
3
  end
@@ -6,48 +6,48 @@ class CompressorsTest < ActiveSupport::TestCase
6
6
  end
7
7
 
8
8
  test "compressor should remove html comments" do
9
- content = %q{
9
+ content = <<-EOS.strip_heredoc
10
10
  <!--
11
11
  What will we do with all
12
12
  of these html comments?
13
13
  -->
14
14
  <span>The span to end all spans</span>
15
- }
16
- assert_equal "\n" + @compressor.compress(content), %q{
15
+ EOS
16
+ assert_equal @compressor.compress(content), <<-EOS.strip_heredoc
17
17
  <span>The span to end all spans</span>
18
- }
18
+ EOS
19
19
  end
20
20
 
21
21
  test "compressor should remove multi-line javascript comments" do
22
- content = %q{
22
+ content = <<-EOS.strip_heredoc
23
23
  <script>
24
24
  /*
25
25
  Here are some comments that
26
26
  go over many, many lines.
27
27
  */
28
28
  </script>
29
- }
30
- assert_equal "\n" + @compressor.compress(content), %q{
29
+ EOS
30
+ assert_equal @compressor.compress(content), <<-EOS.strip_heredoc
31
31
  <script>
32
32
  </script>
33
- }
33
+ EOS
34
34
  end
35
35
 
36
36
  test "compressor should remove single-line javascript comments" do
37
- content = %q{
37
+ content = <<-EOS.strip_heredoc
38
38
  <script>
39
39
  // Here is a comment.
40
40
  // Here is another coment.
41
41
  </script>
42
- }
43
- assert_equal "\n" + @compressor.compress(content), %q{
42
+ EOS
43
+ assert_equal @compressor.compress(content), <<-EOS.strip_heredoc
44
44
  <script>
45
45
  </script>
46
- }
46
+ EOS
47
47
  end
48
48
 
49
49
  test "compressor should remove css comments" do
50
- content = %q{
50
+ content = <<-EOS.strip_heredoc
51
51
  <style>
52
52
  h1 {
53
53
  /*
@@ -56,18 +56,18 @@ class CompressorsTest < ActiveSupport::TestCase
56
56
  color: pink;
57
57
  }
58
58
  </style>
59
- }
60
- assert_equal "\n" + @compressor.compress(content), %q{
59
+ EOS
60
+ assert_equal @compressor.compress(content), <<-EOS.strip_heredoc
61
61
  <style>
62
62
  h1 {
63
63
  color: pink;
64
64
  }
65
65
  </style>
66
- }
66
+ EOS
67
67
  end
68
68
 
69
69
  test "compressor should remove blank lines" do
70
- content = %q{
70
+ content = <<-EOS.strip_heredoc
71
71
  <p>test</p>
72
72
 
73
73
 
@@ -75,20 +75,20 @@ class CompressorsTest < ActiveSupport::TestCase
75
75
  <p>oh yeah</p>
76
76
 
77
77
  <p>test</p>
78
- }
79
- assert_equal "\n" + @compressor.compress(content), %q{
78
+ EOS
79
+ assert_equal @compressor.compress(content), <<-EOS.strip_heredoc
80
80
  <p>test</p>
81
81
  <p>oh yeah</p>
82
82
  <p>test</p>
83
- }
83
+ EOS
84
84
  end
85
85
 
86
86
  test "compressor should not attempt to remove javascript comments within a string" do
87
- content = %q{
87
+ content = <<-EOS.strip_heredoc
88
88
  <script>
89
89
  var url = 'http://www.w3.org/2000/svg';
90
90
  </script>
91
- }
92
- assert_equal "\n" + @compressor.compress(content), content
91
+ EOS
92
+ assert_equal @compressor.compress(content), content
93
93
  end
94
94
  end
@@ -25852,3 +25852,1528 @@ ProcessorsTest: test_processing_scripts_should_work
25852
25852
  ProcessorsTest: test_processing_stylesheets_should_work
25853
25853
  -------------------------------------------------------
25854
25854
   (0.0ms) rollback transaction
25855
+  (0.1ms) begin transaction
25856
+ --------------------------------------------
25857
+ NodeTest: test_can_be_replaced_by_a_<script>
25858
+ --------------------------------------------
25859
+  (0.0ms) rollback transaction
25860
+  (0.1ms) begin transaction
25861
+ -------------------------------------------
25862
+ NodeTest: test_can_be_replaced_by_a_<style>
25863
+ -------------------------------------------
25864
+  (0.0ms) rollback transaction
25865
+  (0.0ms) begin transaction
25866
+ ----------------------------------------
25867
+ NodeTest: test_should_have_a_script_path
25868
+ ----------------------------------------
25869
+  (0.0ms) rollback transaction
25870
+  (0.1ms) begin transaction
25871
+ --------------------------------------------
25872
+ NodeTest: test_should_have_a_stylesheet_path
25873
+ --------------------------------------------
25874
+  (0.0ms) rollback transaction
25875
+  (0.0ms) begin transaction
25876
+ -----------------------------------
25877
+ NodeTest: test_should_remove_itself
25878
+ -----------------------------------
25879
+  (0.0ms) rollback transaction
25880
+  (0.0ms) begin transaction
25881
+ -------------------------------------------
25882
+ ResolverTest: test_should_evaluate_an_asset
25883
+ -------------------------------------------
25884
+  (0.0ms) rollback transaction
25885
+  (0.1ms) begin transaction
25886
+ -------------------------------------------------------------
25887
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
25888
+ -------------------------------------------------------------
25889
+  (0.0ms) rollback transaction
25890
+  (0.0ms) begin transaction
25891
+ ----------------------------------------
25892
+ ResolverTest: test_should_require_assets
25893
+ ----------------------------------------
25894
+  (0.0ms) rollback transaction
25895
+  (0.1ms) begin transaction
25896
+ -----------------------------------------------
25897
+ ResolverTest: test_should_resolve_absolute_path
25898
+ -----------------------------------------------
25899
+  (0.0ms) rollback transaction
25900
+  (0.0ms) begin transaction
25901
+ -----------------------------------------------------------------------------
25902
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
25903
+ -----------------------------------------------------------------------------
25904
+  (0.0ms) rollback transaction
25905
+  (0.1ms) begin transaction
25906
+ ------------------------------------------
25907
+ DocumentTest: test_can_access_html_imports
25908
+ ------------------------------------------
25909
+  (0.0ms) rollback transaction
25910
+  (0.1ms) begin transaction
25911
+ -------------------------------------
25912
+ DocumentTest: test_can_access_scripts
25913
+ -------------------------------------
25914
+  (0.0ms) rollback transaction
25915
+  (0.0ms) begin transaction
25916
+ -----------------------------------------
25917
+ DocumentTest: test_can_access_stylesheets
25918
+ -----------------------------------------
25919
+  (0.0ms) rollback transaction
25920
+  (0.1ms) begin transaction
25921
+ ------------------------------------------------
25922
+ DocumentTest: test_converts_itself_into_a_string
25923
+ ------------------------------------------------
25924
+  (0.0ms) rollback transaction
25925
+  (0.1ms) begin transaction
25926
+ ------------------------------------------------------------------------------
25927
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
25928
+ ------------------------------------------------------------------------------
25929
+  (0.0ms) rollback transaction
25930
+  (0.0ms) begin transaction
25931
+ ------------------------------------------------------------------------------
25932
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
25933
+ ------------------------------------------------------------------------------
25934
+  (0.0ms) rollback transaction
25935
+  (0.1ms) begin transaction
25936
+ ------------------------------------------------------------------
25937
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
25938
+ ------------------------------------------------------------------
25939
+  (0.0ms) rollback transaction
25940
+  (0.0ms) begin transaction
25941
+ ----------------------------------------------------------------------
25942
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
25943
+ ----------------------------------------------------------------------
25944
+  (0.0ms) rollback transaction
25945
+  (0.1ms) begin transaction
25946
+ -------------------------------------------------------------------------------------------------
25947
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
25948
+ -------------------------------------------------------------------------------------------------
25949
+  (0.0ms) rollback transaction
25950
+  (0.1ms) begin transaction
25951
+ ----------------------------------------------------------
25952
+ CompressorsTest: test_compressor_should_remove_blank_lines
25953
+ ----------------------------------------------------------
25954
+  (0.0ms) rollback transaction
25955
+  (0.0ms) begin transaction
25956
+ -----------------------------------------------------------
25957
+ CompressorsTest: test_compressor_should_remove_css_comments
25958
+ -----------------------------------------------------------
25959
+  (0.0ms) rollback transaction
25960
+  (0.1ms) begin transaction
25961
+ ------------------------------------------------------------
25962
+ CompressorsTest: test_compressor_should_remove_html_comments
25963
+ ------------------------------------------------------------
25964
+  (0.0ms) rollback transaction
25965
+  (0.1ms) begin transaction
25966
+ -----------------------------------------------------------------------------
25967
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
25968
+ -----------------------------------------------------------------------------
25969
+  (0.0ms) rollback transaction
25970
+  (0.0ms) begin transaction
25971
+ ------------------------------------------------------------------------------
25972
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
25973
+ ------------------------------------------------------------------------------
25974
+  (0.0ms) rollback transaction
25975
+  (0.0ms) begin transaction
25976
+ -------------------------------------
25977
+ Helpers: test_html_import_should_work
25978
+ -------------------------------------
25979
+  (0.0ms) rollback transaction
25980
+  (0.0ms) begin transaction
25981
+ ---------------------------------------------------
25982
+ ProcessorsTest: test_processing_imports_should_work
25983
+ ---------------------------------------------------
25984
+  (0.0ms) rollback transaction
25985
+  (0.1ms) begin transaction
25986
+ ---------------------------------------------------
25987
+ ProcessorsTest: test_processing_scripts_should_work
25988
+ ---------------------------------------------------
25989
+  (0.1ms) rollback transaction
25990
+  (0.1ms) begin transaction
25991
+ -------------------------------------------------------
25992
+ ProcessorsTest: test_processing_stylesheets_should_work
25993
+ -------------------------------------------------------
25994
+  (0.1ms) rollback transaction
25995
+  (0.1ms) begin transaction
25996
+ ---------------------------------------------------------------------------------
25997
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
25998
+ ---------------------------------------------------------------------------------
25999
+ Processing by DummyController#assets as HTML
26000
+ Completed 200 OK in 30ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26001
+  (0.1ms) rollback transaction
26002
+  (0.1ms) begin transaction
26003
+ -------------------------------------------------------------------------------------------------
26004
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
26005
+ -------------------------------------------------------------------------------------------------
26006
+  (0.0ms) rollback transaction
26007
+  (0.0ms) begin transaction
26008
+ ----------------------------------------------------------
26009
+ CompressorsTest: test_compressor_should_remove_blank_lines
26010
+ ----------------------------------------------------------
26011
+  (0.0ms) rollback transaction
26012
+  (0.0ms) begin transaction
26013
+ -----------------------------------------------------------
26014
+ CompressorsTest: test_compressor_should_remove_css_comments
26015
+ -----------------------------------------------------------
26016
+  (0.0ms) rollback transaction
26017
+  (0.0ms) begin transaction
26018
+ ------------------------------------------------------------
26019
+ CompressorsTest: test_compressor_should_remove_html_comments
26020
+ ------------------------------------------------------------
26021
+  (0.0ms) rollback transaction
26022
+  (0.0ms) begin transaction
26023
+ -----------------------------------------------------------------------------
26024
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
26025
+ -----------------------------------------------------------------------------
26026
+  (0.0ms) rollback transaction
26027
+  (0.0ms) begin transaction
26028
+ ------------------------------------------------------------------------------
26029
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
26030
+ ------------------------------------------------------------------------------
26031
+  (0.0ms) rollback transaction
26032
+  (0.0ms) begin transaction
26033
+ --------------------------------------------
26034
+ NodeTest: test_can_be_replaced_by_a_<script>
26035
+ --------------------------------------------
26036
+  (0.0ms) rollback transaction
26037
+  (0.0ms) begin transaction
26038
+ -------------------------------------------
26039
+ NodeTest: test_can_be_replaced_by_a_<style>
26040
+ -------------------------------------------
26041
+  (0.0ms) rollback transaction
26042
+  (0.0ms) begin transaction
26043
+ ----------------------------------------
26044
+ NodeTest: test_should_have_a_script_path
26045
+ ----------------------------------------
26046
+  (0.0ms) rollback transaction
26047
+  (0.0ms) begin transaction
26048
+ --------------------------------------------
26049
+ NodeTest: test_should_have_a_stylesheet_path
26050
+ --------------------------------------------
26051
+  (0.0ms) rollback transaction
26052
+  (0.0ms) begin transaction
26053
+ -----------------------------------
26054
+ NodeTest: test_should_remove_itself
26055
+ -----------------------------------
26056
+  (0.0ms) rollback transaction
26057
+  (0.0ms) begin transaction
26058
+ -----------------------------------------------------------------------------
26059
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
26060
+ -----------------------------------------------------------------------------
26061
+  (0.0ms) rollback transaction
26062
+  (0.0ms) begin transaction
26063
+ ------------------------------------------
26064
+ DocumentTest: test_can_access_html_imports
26065
+ ------------------------------------------
26066
+  (0.0ms) rollback transaction
26067
+  (0.0ms) begin transaction
26068
+ -------------------------------------
26069
+ DocumentTest: test_can_access_scripts
26070
+ -------------------------------------
26071
+  (0.0ms) rollback transaction
26072
+  (0.0ms) begin transaction
26073
+ -----------------------------------------
26074
+ DocumentTest: test_can_access_stylesheets
26075
+ -----------------------------------------
26076
+  (0.0ms) rollback transaction
26077
+  (0.0ms) begin transaction
26078
+ ------------------------------------------------
26079
+ DocumentTest: test_converts_itself_into_a_string
26080
+ ------------------------------------------------
26081
+  (0.0ms) rollback transaction
26082
+  (0.0ms) begin transaction
26083
+ -----------------------------------------------------------------------
26084
+ DocumentTest: test_curly_brackets_in_src_attributes_should_be_unescaped
26085
+ -----------------------------------------------------------------------
26086
+  (0.0ms) rollback transaction
26087
+  (0.0ms) begin transaction
26088
+ ------------------------------------------------------------------------------
26089
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
26090
+ ------------------------------------------------------------------------------
26091
+  (0.0ms) rollback transaction
26092
+  (0.0ms) begin transaction
26093
+ ------------------------------------------------------------------------------
26094
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
26095
+ ------------------------------------------------------------------------------
26096
+  (0.0ms) rollback transaction
26097
+  (0.0ms) begin transaction
26098
+ ------------------------------------------------------------------
26099
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
26100
+ ------------------------------------------------------------------
26101
+  (0.0ms) rollback transaction
26102
+  (0.0ms) begin transaction
26103
+ ----------------------------------------------------------------------
26104
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
26105
+ ----------------------------------------------------------------------
26106
+  (0.0ms) rollback transaction
26107
+  (0.0ms) begin transaction
26108
+ ---------------------------------------------------------------------------------
26109
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
26110
+ ---------------------------------------------------------------------------------
26111
+ Processing by DummyController#assets as HTML
26112
+ Completed 200 OK in 16ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26113
+  (0.1ms) rollback transaction
26114
+  (0.0ms) begin transaction
26115
+ ---------------------------------------------------
26116
+ ProcessorsTest: test_processing_imports_should_work
26117
+ ---------------------------------------------------
26118
+  (0.0ms) rollback transaction
26119
+  (0.0ms) begin transaction
26120
+ ---------------------------------------------------
26121
+ ProcessorsTest: test_processing_scripts_should_work
26122
+ ---------------------------------------------------
26123
+  (0.0ms) rollback transaction
26124
+  (0.1ms) begin transaction
26125
+ -------------------------------------------------------
26126
+ ProcessorsTest: test_processing_stylesheets_should_work
26127
+ -------------------------------------------------------
26128
+  (0.0ms) rollback transaction
26129
+  (0.0ms) begin transaction
26130
+ -------------------------------------
26131
+ Helpers: test_html_import_should_work
26132
+ -------------------------------------
26133
+  (0.0ms) rollback transaction
26134
+  (0.0ms) begin transaction
26135
+ -------------------------------------------
26136
+ ResolverTest: test_should_evaluate_an_asset
26137
+ -------------------------------------------
26138
+  (0.0ms) rollback transaction
26139
+  (0.1ms) begin transaction
26140
+ -------------------------------------------------------------
26141
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
26142
+ -------------------------------------------------------------
26143
+  (0.0ms) rollback transaction
26144
+  (0.0ms) begin transaction
26145
+ ----------------------------------------
26146
+ ResolverTest: test_should_require_assets
26147
+ ----------------------------------------
26148
+  (0.0ms) rollback transaction
26149
+  (0.0ms) begin transaction
26150
+ -----------------------------------------------
26151
+ ResolverTest: test_should_resolve_absolute_path
26152
+ -----------------------------------------------
26153
+  (0.0ms) rollback transaction
26154
+  (0.1ms) begin transaction
26155
+ -----------------------------------------------------------------------------
26156
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
26157
+ -----------------------------------------------------------------------------
26158
+  (0.0ms) rollback transaction
26159
+  (0.1ms) begin transaction
26160
+ ------------------------------------------
26161
+ DocumentTest: test_can_access_html_imports
26162
+ ------------------------------------------
26163
+  (0.0ms) rollback transaction
26164
+  (0.1ms) begin transaction
26165
+ -------------------------------------
26166
+ DocumentTest: test_can_access_scripts
26167
+ -------------------------------------
26168
+  (0.0ms) rollback transaction
26169
+  (0.1ms) begin transaction
26170
+ -----------------------------------------
26171
+ DocumentTest: test_can_access_stylesheets
26172
+ -----------------------------------------
26173
+  (0.0ms) rollback transaction
26174
+  (0.1ms) begin transaction
26175
+ ------------------------------------------------
26176
+ DocumentTest: test_converts_itself_into_a_string
26177
+ ------------------------------------------------
26178
+  (0.0ms) rollback transaction
26179
+  (0.0ms) begin transaction
26180
+ -----------------------------------------------------------------------
26181
+ DocumentTest: test_curly_brackets_in_src_attributes_should_be_unescaped
26182
+ -----------------------------------------------------------------------
26183
+  (0.0ms) rollback transaction
26184
+  (0.1ms) begin transaction
26185
+ ------------------------------------------------------------------------------
26186
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
26187
+ ------------------------------------------------------------------------------
26188
+  (0.0ms) rollback transaction
26189
+  (0.0ms) begin transaction
26190
+ ------------------------------------------------------------------------------
26191
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
26192
+ ------------------------------------------------------------------------------
26193
+  (0.0ms) rollback transaction
26194
+  (0.1ms) begin transaction
26195
+ ------------------------------------------------------------------
26196
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
26197
+ ------------------------------------------------------------------
26198
+  (0.0ms) rollback transaction
26199
+  (0.0ms) begin transaction
26200
+ ----------------------------------------------------------------------
26201
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
26202
+ ----------------------------------------------------------------------
26203
+  (0.0ms) rollback transaction
26204
+  (0.0ms) begin transaction
26205
+ -------------------------------------
26206
+ Helpers: test_html_import_should_work
26207
+ -------------------------------------
26208
+  (0.0ms) rollback transaction
26209
+  (0.0ms) begin transaction
26210
+ ---------------------------------------------------------------------------------
26211
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
26212
+ ---------------------------------------------------------------------------------
26213
+ Processing by DummyController#assets as HTML
26214
+ Completed 200 OK in 221ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26215
+  (0.1ms) rollback transaction
26216
+  (0.1ms) begin transaction
26217
+ --------------------------------------------
26218
+ NodeTest: test_can_be_replaced_by_a_<script>
26219
+ --------------------------------------------
26220
+  (0.0ms) rollback transaction
26221
+  (0.1ms) begin transaction
26222
+ -------------------------------------------
26223
+ NodeTest: test_can_be_replaced_by_a_<style>
26224
+ -------------------------------------------
26225
+  (0.0ms) rollback transaction
26226
+  (0.1ms) begin transaction
26227
+ ----------------------------------------
26228
+ NodeTest: test_should_have_a_script_path
26229
+ ----------------------------------------
26230
+  (0.0ms) rollback transaction
26231
+  (0.0ms) begin transaction
26232
+ --------------------------------------------
26233
+ NodeTest: test_should_have_a_stylesheet_path
26234
+ --------------------------------------------
26235
+  (0.0ms) rollback transaction
26236
+  (0.1ms) begin transaction
26237
+ -----------------------------------
26238
+ NodeTest: test_should_remove_itself
26239
+ -----------------------------------
26240
+  (0.1ms) rollback transaction
26241
+  (0.1ms) begin transaction
26242
+ -------------------------------------------
26243
+ ResolverTest: test_should_evaluate_an_asset
26244
+ -------------------------------------------
26245
+  (0.0ms) rollback transaction
26246
+  (0.0ms) begin transaction
26247
+ -------------------------------------------------------------
26248
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
26249
+ -------------------------------------------------------------
26250
+  (0.0ms) rollback transaction
26251
+  (0.0ms) begin transaction
26252
+ ----------------------------------------
26253
+ ResolverTest: test_should_require_assets
26254
+ ----------------------------------------
26255
+  (0.0ms) rollback transaction
26256
+  (0.0ms) begin transaction
26257
+ -----------------------------------------------
26258
+ ResolverTest: test_should_resolve_absolute_path
26259
+ -----------------------------------------------
26260
+  (0.0ms) rollback transaction
26261
+  (0.0ms) begin transaction
26262
+ ---------------------------------------------------
26263
+ ProcessorsTest: test_processing_imports_should_work
26264
+ ---------------------------------------------------
26265
+  (0.0ms) rollback transaction
26266
+  (0.0ms) begin transaction
26267
+ ---------------------------------------------------
26268
+ ProcessorsTest: test_processing_scripts_should_work
26269
+ ---------------------------------------------------
26270
+  (0.0ms) rollback transaction
26271
+  (0.0ms) begin transaction
26272
+ -------------------------------------------------------
26273
+ ProcessorsTest: test_processing_stylesheets_should_work
26274
+ -------------------------------------------------------
26275
+  (0.0ms) rollback transaction
26276
+  (0.0ms) begin transaction
26277
+ -------------------------------------------------------------------------------------------------
26278
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
26279
+ -------------------------------------------------------------------------------------------------
26280
+  (0.0ms) rollback transaction
26281
+  (0.0ms) begin transaction
26282
+ ----------------------------------------------------------
26283
+ CompressorsTest: test_compressor_should_remove_blank_lines
26284
+ ----------------------------------------------------------
26285
+  (0.0ms) rollback transaction
26286
+  (0.0ms) begin transaction
26287
+ -----------------------------------------------------------
26288
+ CompressorsTest: test_compressor_should_remove_css_comments
26289
+ -----------------------------------------------------------
26290
+  (0.0ms) rollback transaction
26291
+  (0.0ms) begin transaction
26292
+ ------------------------------------------------------------
26293
+ CompressorsTest: test_compressor_should_remove_html_comments
26294
+ ------------------------------------------------------------
26295
+  (0.0ms) rollback transaction
26296
+  (0.0ms) begin transaction
26297
+ -----------------------------------------------------------------------------
26298
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
26299
+ -----------------------------------------------------------------------------
26300
+  (0.0ms) rollback transaction
26301
+  (0.0ms) begin transaction
26302
+ ------------------------------------------------------------------------------
26303
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
26304
+ ------------------------------------------------------------------------------
26305
+  (0.0ms) rollback transaction
26306
+  (0.1ms) begin transaction
26307
+ --------------------------------------------
26308
+ NodeTest: test_can_be_replaced_by_a_<script>
26309
+ --------------------------------------------
26310
+  (0.1ms) rollback transaction
26311
+  (0.1ms) begin transaction
26312
+ -------------------------------------------
26313
+ NodeTest: test_can_be_replaced_by_a_<style>
26314
+ -------------------------------------------
26315
+  (0.1ms) rollback transaction
26316
+  (0.1ms) begin transaction
26317
+ ----------------------------------------
26318
+ NodeTest: test_should_have_a_script_path
26319
+ ----------------------------------------
26320
+  (0.1ms) rollback transaction
26321
+  (0.1ms) begin transaction
26322
+ --------------------------------------------
26323
+ NodeTest: test_should_have_a_stylesheet_path
26324
+ --------------------------------------------
26325
+  (0.1ms) rollback transaction
26326
+  (0.0ms) begin transaction
26327
+ -----------------------------------
26328
+ NodeTest: test_should_remove_itself
26329
+ -----------------------------------
26330
+  (0.1ms) rollback transaction
26331
+  (0.0ms) begin transaction
26332
+ ---------------------------------------------------
26333
+ ProcessorsTest: test_processing_imports_should_work
26334
+ ---------------------------------------------------
26335
+  (0.1ms) rollback transaction
26336
+  (0.1ms) begin transaction
26337
+ ---------------------------------------------------
26338
+ ProcessorsTest: test_processing_scripts_should_work
26339
+ ---------------------------------------------------
26340
+  (0.1ms) rollback transaction
26341
+  (0.1ms) begin transaction
26342
+ -------------------------------------------------------
26343
+ ProcessorsTest: test_processing_stylesheets_should_work
26344
+ -------------------------------------------------------
26345
+  (0.1ms) rollback transaction
26346
+  (0.0ms) begin transaction
26347
+ -----------------------------------------------------------------------------
26348
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
26349
+ -----------------------------------------------------------------------------
26350
+  (0.0ms) rollback transaction
26351
+  (0.0ms) begin transaction
26352
+ ------------------------------------------
26353
+ DocumentTest: test_can_access_html_imports
26354
+ ------------------------------------------
26355
+  (0.0ms) rollback transaction
26356
+  (0.0ms) begin transaction
26357
+ -------------------------------------
26358
+ DocumentTest: test_can_access_scripts
26359
+ -------------------------------------
26360
+  (0.0ms) rollback transaction
26361
+  (0.0ms) begin transaction
26362
+ -----------------------------------------
26363
+ DocumentTest: test_can_access_stylesheets
26364
+ -----------------------------------------
26365
+  (0.0ms) rollback transaction
26366
+  (0.0ms) begin transaction
26367
+ ------------------------------------------------
26368
+ DocumentTest: test_converts_itself_into_a_string
26369
+ ------------------------------------------------
26370
+  (0.0ms) rollback transaction
26371
+  (0.0ms) begin transaction
26372
+ -----------------------------------------------------------------------
26373
+ DocumentTest: test_curly_brackets_in_src_attributes_should_be_unescaped
26374
+ -----------------------------------------------------------------------
26375
+  (0.0ms) rollback transaction
26376
+  (0.0ms) begin transaction
26377
+ ------------------------------------------------------------------------------
26378
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
26379
+ ------------------------------------------------------------------------------
26380
+  (0.1ms) rollback transaction
26381
+  (0.0ms) begin transaction
26382
+ ------------------------------------------------------------------------------
26383
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
26384
+ ------------------------------------------------------------------------------
26385
+  (0.1ms) rollback transaction
26386
+  (0.1ms) begin transaction
26387
+ ------------------------------------------------------------------
26388
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
26389
+ ------------------------------------------------------------------
26390
+  (0.1ms) rollback transaction
26391
+  (0.1ms) begin transaction
26392
+ ----------------------------------------------------------------------
26393
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
26394
+ ----------------------------------------------------------------------
26395
+  (0.0ms) rollback transaction
26396
+  (0.0ms) begin transaction
26397
+ ---------------------------------------------------------------------------------
26398
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
26399
+ ---------------------------------------------------------------------------------
26400
+ Processing by DummyController#assets as HTML
26401
+ Completed 200 OK in 16ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26402
+  (0.1ms) rollback transaction
26403
+  (0.1ms) begin transaction
26404
+ -------------------------------------------------------------------------------------------------
26405
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
26406
+ -------------------------------------------------------------------------------------------------
26407
+  (0.0ms) rollback transaction
26408
+  (0.0ms) begin transaction
26409
+ ----------------------------------------------------------
26410
+ CompressorsTest: test_compressor_should_remove_blank_lines
26411
+ ----------------------------------------------------------
26412
+  (0.0ms) rollback transaction
26413
+  (0.0ms) begin transaction
26414
+ -----------------------------------------------------------
26415
+ CompressorsTest: test_compressor_should_remove_css_comments
26416
+ -----------------------------------------------------------
26417
+  (0.0ms) rollback transaction
26418
+  (0.0ms) begin transaction
26419
+ ------------------------------------------------------------
26420
+ CompressorsTest: test_compressor_should_remove_html_comments
26421
+ ------------------------------------------------------------
26422
+  (0.0ms) rollback transaction
26423
+  (0.0ms) begin transaction
26424
+ -----------------------------------------------------------------------------
26425
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
26426
+ -----------------------------------------------------------------------------
26427
+  (0.0ms) rollback transaction
26428
+  (0.0ms) begin transaction
26429
+ ------------------------------------------------------------------------------
26430
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
26431
+ ------------------------------------------------------------------------------
26432
+  (0.0ms) rollback transaction
26433
+  (0.0ms) begin transaction
26434
+ -------------------------------------------
26435
+ ResolverTest: test_should_evaluate_an_asset
26436
+ -------------------------------------------
26437
+  (0.0ms) rollback transaction
26438
+  (0.0ms) begin transaction
26439
+ -------------------------------------------------------------
26440
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
26441
+ -------------------------------------------------------------
26442
+  (0.0ms) rollback transaction
26443
+  (0.0ms) begin transaction
26444
+ ----------------------------------------
26445
+ ResolverTest: test_should_require_assets
26446
+ ----------------------------------------
26447
+  (0.0ms) rollback transaction
26448
+  (0.0ms) begin transaction
26449
+ -----------------------------------------------
26450
+ ResolverTest: test_should_resolve_absolute_path
26451
+ -----------------------------------------------
26452
+  (0.0ms) rollback transaction
26453
+  (0.0ms) begin transaction
26454
+ -------------------------------------
26455
+ Helpers: test_html_import_should_work
26456
+ -------------------------------------
26457
+  (0.0ms) rollback transaction
26458
+  (0.1ms) begin transaction
26459
+ -------------------------------------------
26460
+ ResolverTest: test_should_evaluate_an_asset
26461
+ -------------------------------------------
26462
+  (0.1ms) rollback transaction
26463
+  (0.1ms) begin transaction
26464
+ -------------------------------------------------------------
26465
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
26466
+ -------------------------------------------------------------
26467
+  (0.1ms) rollback transaction
26468
+  (0.1ms) begin transaction
26469
+ ----------------------------------------
26470
+ ResolverTest: test_should_require_assets
26471
+ ----------------------------------------
26472
+  (0.1ms) rollback transaction
26473
+  (0.1ms) begin transaction
26474
+ -----------------------------------------------
26475
+ ResolverTest: test_should_resolve_absolute_path
26476
+ -----------------------------------------------
26477
+  (0.1ms) rollback transaction
26478
+  (0.1ms) begin transaction
26479
+ ---------------------------------------------------------------------------------
26480
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
26481
+ ---------------------------------------------------------------------------------
26482
+ Processing by DummyController#assets as HTML
26483
+ Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26484
+  (0.1ms) rollback transaction
26485
+  (0.1ms) begin transaction
26486
+ -------------------------------------------------------------------------------------------------
26487
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
26488
+ -------------------------------------------------------------------------------------------------
26489
+  (0.0ms) rollback transaction
26490
+  (0.1ms) begin transaction
26491
+ ----------------------------------------------------------
26492
+ CompressorsTest: test_compressor_should_remove_blank_lines
26493
+ ----------------------------------------------------------
26494
+  (0.0ms) rollback transaction
26495
+  (0.1ms) begin transaction
26496
+ -----------------------------------------------------------
26497
+ CompressorsTest: test_compressor_should_remove_css_comments
26498
+ -----------------------------------------------------------
26499
+  (0.0ms) rollback transaction
26500
+  (0.1ms) begin transaction
26501
+ ------------------------------------------------------------
26502
+ CompressorsTest: test_compressor_should_remove_html_comments
26503
+ ------------------------------------------------------------
26504
+  (0.0ms) rollback transaction
26505
+  (0.1ms) begin transaction
26506
+ -----------------------------------------------------------------------------
26507
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
26508
+ -----------------------------------------------------------------------------
26509
+  (0.1ms) rollback transaction
26510
+  (0.1ms) begin transaction
26511
+ ------------------------------------------------------------------------------
26512
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
26513
+ ------------------------------------------------------------------------------
26514
+  (0.1ms) rollback transaction
26515
+  (0.1ms) begin transaction
26516
+ -----------------------------------------------------------------------------
26517
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
26518
+ -----------------------------------------------------------------------------
26519
+  (0.1ms) rollback transaction
26520
+  (0.1ms) begin transaction
26521
+ ------------------------------------------
26522
+ DocumentTest: test_can_access_html_imports
26523
+ ------------------------------------------
26524
+  (0.0ms) rollback transaction
26525
+  (0.1ms) begin transaction
26526
+ -------------------------------------
26527
+ DocumentTest: test_can_access_scripts
26528
+ -------------------------------------
26529
+  (0.1ms) rollback transaction
26530
+  (0.0ms) begin transaction
26531
+ -----------------------------------------
26532
+ DocumentTest: test_can_access_stylesheets
26533
+ -----------------------------------------
26534
+  (0.1ms) rollback transaction
26535
+  (0.1ms) begin transaction
26536
+ ------------------------------------------------
26537
+ DocumentTest: test_converts_itself_into_a_string
26538
+ ------------------------------------------------
26539
+  (0.1ms) rollback transaction
26540
+  (0.1ms) begin transaction
26541
+ -----------------------------------------------------------------------
26542
+ DocumentTest: test_curly_brackets_in_src_attributes_should_be_unescaped
26543
+ -----------------------------------------------------------------------
26544
+  (0.0ms) rollback transaction
26545
+  (0.0ms) begin transaction
26546
+ ------------------------------------------------------------------------------
26547
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
26548
+ ------------------------------------------------------------------------------
26549
+  (0.0ms) rollback transaction
26550
+  (0.0ms) begin transaction
26551
+ ------------------------------------------------------------------------------
26552
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
26553
+ ------------------------------------------------------------------------------
26554
+  (0.0ms) rollback transaction
26555
+  (0.0ms) begin transaction
26556
+ ------------------------------------------------------------------
26557
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
26558
+ ------------------------------------------------------------------
26559
+  (0.0ms) rollback transaction
26560
+  (0.1ms) begin transaction
26561
+ ----------------------------------------------------------------------
26562
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
26563
+ ----------------------------------------------------------------------
26564
+  (0.0ms) rollback transaction
26565
+  (0.2ms) begin transaction
26566
+ -------------------------------------
26567
+ Helpers: test_html_import_should_work
26568
+ -------------------------------------
26569
+  (0.1ms) rollback transaction
26570
+  (0.1ms) begin transaction
26571
+ ---------------------------------------------------
26572
+ ProcessorsTest: test_processing_imports_should_work
26573
+ ---------------------------------------------------
26574
+  (0.1ms) rollback transaction
26575
+  (0.1ms) begin transaction
26576
+ ---------------------------------------------------
26577
+ ProcessorsTest: test_processing_scripts_should_work
26578
+ ---------------------------------------------------
26579
+  (0.1ms) rollback transaction
26580
+  (0.0ms) begin transaction
26581
+ -------------------------------------------------------
26582
+ ProcessorsTest: test_processing_stylesheets_should_work
26583
+ -------------------------------------------------------
26584
+  (0.0ms) rollback transaction
26585
+  (0.0ms) begin transaction
26586
+ --------------------------------------------
26587
+ NodeTest: test_can_be_replaced_by_a_<script>
26588
+ --------------------------------------------
26589
+  (0.1ms) rollback transaction
26590
+  (0.1ms) begin transaction
26591
+ -------------------------------------------
26592
+ NodeTest: test_can_be_replaced_by_a_<style>
26593
+ -------------------------------------------
26594
+  (0.0ms) rollback transaction
26595
+  (0.0ms) begin transaction
26596
+ ----------------------------------------
26597
+ NodeTest: test_should_have_a_script_path
26598
+ ----------------------------------------
26599
+  (0.1ms) rollback transaction
26600
+  (0.0ms) begin transaction
26601
+ --------------------------------------------
26602
+ NodeTest: test_should_have_a_stylesheet_path
26603
+ --------------------------------------------
26604
+  (0.0ms) rollback transaction
26605
+  (0.0ms) begin transaction
26606
+ -----------------------------------
26607
+ NodeTest: test_should_remove_itself
26608
+ -----------------------------------
26609
+  (0.0ms) rollback transaction
26610
+  (0.1ms) begin transaction
26611
+ -------------------------------------------
26612
+ ResolverTest: test_should_evaluate_an_asset
26613
+ -------------------------------------------
26614
+  (0.1ms) rollback transaction
26615
+  (0.1ms) begin transaction
26616
+ -------------------------------------------------------------
26617
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
26618
+ -------------------------------------------------------------
26619
+  (0.1ms) rollback transaction
26620
+  (0.1ms) begin transaction
26621
+ ----------------------------------------
26622
+ ResolverTest: test_should_require_assets
26623
+ ----------------------------------------
26624
+  (0.1ms) rollback transaction
26625
+  (0.1ms) begin transaction
26626
+ -----------------------------------------------
26627
+ ResolverTest: test_should_resolve_absolute_path
26628
+ -----------------------------------------------
26629
+  (0.0ms) rollback transaction
26630
+  (0.0ms) begin transaction
26631
+ -------------------------------------
26632
+ Helpers: test_html_import_should_work
26633
+ -------------------------------------
26634
+  (0.0ms) rollback transaction
26635
+  (0.0ms) begin transaction
26636
+ ---------------------------------------------------
26637
+ ProcessorsTest: test_processing_imports_should_work
26638
+ ---------------------------------------------------
26639
+  (0.0ms) rollback transaction
26640
+  (0.1ms) begin transaction
26641
+ ---------------------------------------------------
26642
+ ProcessorsTest: test_processing_scripts_should_work
26643
+ ---------------------------------------------------
26644
+  (0.1ms) rollback transaction
26645
+  (0.0ms) begin transaction
26646
+ -------------------------------------------------------
26647
+ ProcessorsTest: test_processing_stylesheets_should_work
26648
+ -------------------------------------------------------
26649
+  (0.0ms) rollback transaction
26650
+  (0.0ms) begin transaction
26651
+ -------------------------------------------------------------------------------------------------
26652
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
26653
+ -------------------------------------------------------------------------------------------------
26654
+  (0.0ms) rollback transaction
26655
+  (0.1ms) begin transaction
26656
+ ----------------------------------------------------------
26657
+ CompressorsTest: test_compressor_should_remove_blank_lines
26658
+ ----------------------------------------------------------
26659
+  (0.0ms) rollback transaction
26660
+  (0.1ms) begin transaction
26661
+ -----------------------------------------------------------
26662
+ CompressorsTest: test_compressor_should_remove_css_comments
26663
+ -----------------------------------------------------------
26664
+  (0.0ms) rollback transaction
26665
+  (0.1ms) begin transaction
26666
+ ------------------------------------------------------------
26667
+ CompressorsTest: test_compressor_should_remove_html_comments
26668
+ ------------------------------------------------------------
26669
+  (0.0ms) rollback transaction
26670
+  (0.1ms) begin transaction
26671
+ -----------------------------------------------------------------------------
26672
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
26673
+ -----------------------------------------------------------------------------
26674
+  (0.0ms) rollback transaction
26675
+  (0.1ms) begin transaction
26676
+ ------------------------------------------------------------------------------
26677
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
26678
+ ------------------------------------------------------------------------------
26679
+  (0.0ms) rollback transaction
26680
+  (0.1ms) begin transaction
26681
+ --------------------------------------------
26682
+ NodeTest: test_can_be_replaced_by_a_<script>
26683
+ --------------------------------------------
26684
+  (0.0ms) rollback transaction
26685
+  (0.1ms) begin transaction
26686
+ -------------------------------------------
26687
+ NodeTest: test_can_be_replaced_by_a_<style>
26688
+ -------------------------------------------
26689
+  (0.0ms) rollback transaction
26690
+  (0.1ms) begin transaction
26691
+ ----------------------------------------
26692
+ NodeTest: test_should_have_a_script_path
26693
+ ----------------------------------------
26694
+  (0.1ms) rollback transaction
26695
+  (0.1ms) begin transaction
26696
+ --------------------------------------------
26697
+ NodeTest: test_should_have_a_stylesheet_path
26698
+ --------------------------------------------
26699
+  (0.0ms) rollback transaction
26700
+  (0.0ms) begin transaction
26701
+ -----------------------------------
26702
+ NodeTest: test_should_remove_itself
26703
+ -----------------------------------
26704
+  (0.0ms) rollback transaction
26705
+  (0.1ms) begin transaction
26706
+ ---------------------------------------------------------------------------------
26707
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
26708
+ ---------------------------------------------------------------------------------
26709
+ Processing by DummyController#assets as HTML
26710
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26711
+  (0.1ms) rollback transaction
26712
+  (0.1ms) begin transaction
26713
+ -----------------------------------------------------------------------------
26714
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
26715
+ -----------------------------------------------------------------------------
26716
+  (0.1ms) rollback transaction
26717
+  (0.1ms) begin transaction
26718
+ ------------------------------------------
26719
+ DocumentTest: test_can_access_html_imports
26720
+ ------------------------------------------
26721
+  (0.0ms) rollback transaction
26722
+  (0.1ms) begin transaction
26723
+ -------------------------------------
26724
+ DocumentTest: test_can_access_scripts
26725
+ -------------------------------------
26726
+  (0.1ms) rollback transaction
26727
+  (0.1ms) begin transaction
26728
+ -----------------------------------------
26729
+ DocumentTest: test_can_access_stylesheets
26730
+ -----------------------------------------
26731
+  (0.1ms) rollback transaction
26732
+  (0.1ms) begin transaction
26733
+ ------------------------------------------------
26734
+ DocumentTest: test_converts_itself_into_a_string
26735
+ ------------------------------------------------
26736
+  (0.1ms) rollback transaction
26737
+  (0.1ms) begin transaction
26738
+ -----------------------------------------------------------------------
26739
+ DocumentTest: test_curly_brackets_in_src_attributes_should_be_unescaped
26740
+ -----------------------------------------------------------------------
26741
+  (0.0ms) rollback transaction
26742
+  (0.0ms) begin transaction
26743
+ ------------------------------------------------------------------------------
26744
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
26745
+ ------------------------------------------------------------------------------
26746
+  (0.0ms) rollback transaction
26747
+  (0.1ms) begin transaction
26748
+ ------------------------------------------------------------------------------
26749
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
26750
+ ------------------------------------------------------------------------------
26751
+  (0.0ms) rollback transaction
26752
+  (0.0ms) begin transaction
26753
+ ------------------------------------------------------------------
26754
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
26755
+ ------------------------------------------------------------------
26756
+  (0.0ms) rollback transaction
26757
+  (0.1ms) begin transaction
26758
+ ----------------------------------------------------------------------
26759
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
26760
+ ----------------------------------------------------------------------
26761
+  (0.0ms) rollback transaction
26762
+  (0.1ms) begin transaction
26763
+ -------------------------------------------
26764
+ ResolverTest: test_should_evaluate_an_asset
26765
+ -------------------------------------------
26766
+  (0.1ms) rollback transaction
26767
+  (0.1ms) begin transaction
26768
+ -------------------------------------------------------------
26769
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
26770
+ -------------------------------------------------------------
26771
+  (0.1ms) rollback transaction
26772
+  (0.1ms) begin transaction
26773
+ ----------------------------------------
26774
+ ResolverTest: test_should_require_assets
26775
+ ----------------------------------------
26776
+  (0.1ms) rollback transaction
26777
+  (0.1ms) begin transaction
26778
+ -----------------------------------------------
26779
+ ResolverTest: test_should_resolve_absolute_path
26780
+ -----------------------------------------------
26781
+  (0.1ms) rollback transaction
26782
+  (0.1ms) begin transaction
26783
+ --------------------------------------------
26784
+ NodeTest: test_can_be_replaced_by_a_<script>
26785
+ --------------------------------------------
26786
+  (0.1ms) rollback transaction
26787
+  (0.1ms) begin transaction
26788
+ -------------------------------------------
26789
+ NodeTest: test_can_be_replaced_by_a_<style>
26790
+ -------------------------------------------
26791
+  (0.2ms) rollback transaction
26792
+  (0.1ms) begin transaction
26793
+ ----------------------------------------
26794
+ NodeTest: test_should_have_a_script_path
26795
+ ----------------------------------------
26796
+  (0.1ms) rollback transaction
26797
+  (0.1ms) begin transaction
26798
+ --------------------------------------------
26799
+ NodeTest: test_should_have_a_stylesheet_path
26800
+ --------------------------------------------
26801
+  (0.1ms) rollback transaction
26802
+  (0.1ms) begin transaction
26803
+ -----------------------------------
26804
+ NodeTest: test_should_remove_itself
26805
+ -----------------------------------
26806
+  (0.1ms) rollback transaction
26807
+  (0.1ms) begin transaction
26808
+ -------------------------------------------------------------------------------------------------
26809
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
26810
+ -------------------------------------------------------------------------------------------------
26811
+  (0.1ms) rollback transaction
26812
+  (0.1ms) begin transaction
26813
+ ----------------------------------------------------------
26814
+ CompressorsTest: test_compressor_should_remove_blank_lines
26815
+ ----------------------------------------------------------
26816
+  (0.1ms) rollback transaction
26817
+  (0.1ms) begin transaction
26818
+ -----------------------------------------------------------
26819
+ CompressorsTest: test_compressor_should_remove_css_comments
26820
+ -----------------------------------------------------------
26821
+  (0.1ms) rollback transaction
26822
+  (0.0ms) begin transaction
26823
+ ------------------------------------------------------------
26824
+ CompressorsTest: test_compressor_should_remove_html_comments
26825
+ ------------------------------------------------------------
26826
+  (0.0ms) rollback transaction
26827
+  (0.0ms) begin transaction
26828
+ -----------------------------------------------------------------------------
26829
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
26830
+ -----------------------------------------------------------------------------
26831
+  (0.0ms) rollback transaction
26832
+  (0.0ms) begin transaction
26833
+ ------------------------------------------------------------------------------
26834
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
26835
+ ------------------------------------------------------------------------------
26836
+  (0.0ms) rollback transaction
26837
+  (0.1ms) begin transaction
26838
+ ---------------------------------------------------
26839
+ ProcessorsTest: test_processing_imports_should_work
26840
+ ---------------------------------------------------
26841
+  (0.1ms) rollback transaction
26842
+  (0.1ms) begin transaction
26843
+ ---------------------------------------------------
26844
+ ProcessorsTest: test_processing_scripts_should_work
26845
+ ---------------------------------------------------
26846
+  (0.0ms) rollback transaction
26847
+  (0.1ms) begin transaction
26848
+ -------------------------------------------------------
26849
+ ProcessorsTest: test_processing_stylesheets_should_work
26850
+ -------------------------------------------------------
26851
+  (0.1ms) rollback transaction
26852
+  (0.1ms) begin transaction
26853
+ -----------------------------------------------------------------------------
26854
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
26855
+ -----------------------------------------------------------------------------
26856
+  (0.1ms) rollback transaction
26857
+  (0.1ms) begin transaction
26858
+ ------------------------------------------
26859
+ DocumentTest: test_can_access_html_imports
26860
+ ------------------------------------------
26861
+  (0.1ms) rollback transaction
26862
+  (0.1ms) begin transaction
26863
+ -------------------------------------
26864
+ DocumentTest: test_can_access_scripts
26865
+ -------------------------------------
26866
+  (0.1ms) rollback transaction
26867
+  (0.1ms) begin transaction
26868
+ -----------------------------------------
26869
+ DocumentTest: test_can_access_stylesheets
26870
+ -----------------------------------------
26871
+  (0.2ms) rollback transaction
26872
+  (0.1ms) begin transaction
26873
+ ------------------------------------------------
26874
+ DocumentTest: test_converts_itself_into_a_string
26875
+ ------------------------------------------------
26876
+  (0.1ms) rollback transaction
26877
+  (0.1ms) begin transaction
26878
+ -----------------------------------------------------------------------
26879
+ DocumentTest: test_curly_brackets_in_src_attributes_should_be_unescaped
26880
+ -----------------------------------------------------------------------
26881
+  (0.1ms) rollback transaction
26882
+  (0.1ms) begin transaction
26883
+ ------------------------------------------------------------------------------
26884
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
26885
+ ------------------------------------------------------------------------------
26886
+  (0.0ms) rollback transaction
26887
+  (0.0ms) begin transaction
26888
+ ------------------------------------------------------------------------------
26889
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
26890
+ ------------------------------------------------------------------------------
26891
+  (0.0ms) rollback transaction
26892
+  (0.1ms) begin transaction
26893
+ ------------------------------------------------------------------
26894
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
26895
+ ------------------------------------------------------------------
26896
+  (0.0ms) rollback transaction
26897
+  (0.0ms) begin transaction
26898
+ ----------------------------------------------------------------------
26899
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
26900
+ ----------------------------------------------------------------------
26901
+  (0.1ms) rollback transaction
26902
+  (0.1ms) begin transaction
26903
+ -------------------------------------
26904
+ Helpers: test_html_import_should_work
26905
+ -------------------------------------
26906
+  (0.1ms) rollback transaction
26907
+  (0.1ms) begin transaction
26908
+ ---------------------------------------------------------------------------------
26909
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
26910
+ ---------------------------------------------------------------------------------
26911
+ Processing by DummyController#assets as HTML
26912
+ Completed 200 OK in 17ms (Views: 0.4ms | ActiveRecord: 0.0ms)
26913
+  (0.1ms) rollback transaction
26914
+  (0.1ms) begin transaction
26915
+ --------------------------------------------
26916
+ NodeTest: test_can_be_replaced_by_a_<script>
26917
+ --------------------------------------------
26918
+  (0.0ms) rollback transaction
26919
+  (0.1ms) begin transaction
26920
+ -------------------------------------------
26921
+ NodeTest: test_can_be_replaced_by_a_<style>
26922
+ -------------------------------------------
26923
+  (0.0ms) rollback transaction
26924
+  (0.1ms) begin transaction
26925
+ ----------------------------------------
26926
+ NodeTest: test_should_have_a_script_path
26927
+ ----------------------------------------
26928
+  (0.0ms) rollback transaction
26929
+  (0.1ms) begin transaction
26930
+ --------------------------------------------
26931
+ NodeTest: test_should_have_a_stylesheet_path
26932
+ --------------------------------------------
26933
+  (0.0ms) rollback transaction
26934
+  (0.1ms) begin transaction
26935
+ -----------------------------------
26936
+ NodeTest: test_should_remove_itself
26937
+ -----------------------------------
26938
+  (0.1ms) rollback transaction
26939
+  (0.0ms) begin transaction
26940
+ -------------------------------------------
26941
+ ResolverTest: test_should_evaluate_an_asset
26942
+ -------------------------------------------
26943
+  (0.0ms) rollback transaction
26944
+  (0.1ms) begin transaction
26945
+ -------------------------------------------------------------
26946
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
26947
+ -------------------------------------------------------------
26948
+  (0.0ms) rollback transaction
26949
+  (0.1ms) begin transaction
26950
+ ----------------------------------------
26951
+ ResolverTest: test_should_require_assets
26952
+ ----------------------------------------
26953
+  (0.0ms) rollback transaction
26954
+  (0.0ms) begin transaction
26955
+ -----------------------------------------------
26956
+ ResolverTest: test_should_resolve_absolute_path
26957
+ -----------------------------------------------
26958
+  (0.0ms) rollback transaction
26959
+  (0.1ms) begin transaction
26960
+ ---------------------------------------------------
26961
+ ProcessorsTest: test_processing_imports_should_work
26962
+ ---------------------------------------------------
26963
+  (0.1ms) rollback transaction
26964
+  (0.1ms) begin transaction
26965
+ ---------------------------------------------------
26966
+ ProcessorsTest: test_processing_scripts_should_work
26967
+ ---------------------------------------------------
26968
+  (0.0ms) rollback transaction
26969
+  (0.1ms) begin transaction
26970
+ -------------------------------------------------------
26971
+ ProcessorsTest: test_processing_stylesheets_should_work
26972
+ -------------------------------------------------------
26973
+  (0.1ms) rollback transaction
26974
+  (0.0ms) begin transaction
26975
+ ---------------------------------------------------------------------------------
26976
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
26977
+ ---------------------------------------------------------------------------------
26978
+ Processing by DummyController#assets as HTML
26979
+ Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 0.0ms)
26980
+  (0.1ms) rollback transaction
26981
+  (0.0ms) begin transaction
26982
+ -------------------------------------------------------------------------------------------------
26983
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
26984
+ -------------------------------------------------------------------------------------------------
26985
+  (0.1ms) rollback transaction
26986
+  (0.1ms) begin transaction
26987
+ ----------------------------------------------------------
26988
+ CompressorsTest: test_compressor_should_remove_blank_lines
26989
+ ----------------------------------------------------------
26990
+  (0.0ms) rollback transaction
26991
+  (0.1ms) begin transaction
26992
+ -----------------------------------------------------------
26993
+ CompressorsTest: test_compressor_should_remove_css_comments
26994
+ -----------------------------------------------------------
26995
+  (0.1ms) rollback transaction
26996
+  (0.1ms) begin transaction
26997
+ ------------------------------------------------------------
26998
+ CompressorsTest: test_compressor_should_remove_html_comments
26999
+ ------------------------------------------------------------
27000
+  (0.0ms) rollback transaction
27001
+  (0.1ms) begin transaction
27002
+ -----------------------------------------------------------------------------
27003
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
27004
+ -----------------------------------------------------------------------------
27005
+  (0.0ms) rollback transaction
27006
+  (0.1ms) begin transaction
27007
+ ------------------------------------------------------------------------------
27008
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
27009
+ ------------------------------------------------------------------------------
27010
+  (0.0ms) rollback transaction
27011
+  (0.0ms) begin transaction
27012
+ -------------------------------------
27013
+ Helpers: test_html_import_should_work
27014
+ -------------------------------------
27015
+  (0.0ms) rollback transaction
27016
+  (0.0ms) begin transaction
27017
+ -----------------------------------------------------------------------------
27018
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
27019
+ -----------------------------------------------------------------------------
27020
+  (0.1ms) rollback transaction
27021
+  (0.1ms) begin transaction
27022
+ ------------------------------------------
27023
+ DocumentTest: test_can_access_html_imports
27024
+ ------------------------------------------
27025
+  (0.1ms) rollback transaction
27026
+  (0.1ms) begin transaction
27027
+ -------------------------------------
27028
+ DocumentTest: test_can_access_scripts
27029
+ -------------------------------------
27030
+  (0.0ms) rollback transaction
27031
+  (0.1ms) begin transaction
27032
+ -----------------------------------------
27033
+ DocumentTest: test_can_access_stylesheets
27034
+ -----------------------------------------
27035
+  (0.1ms) rollback transaction
27036
+  (0.1ms) begin transaction
27037
+ ------------------------------------------------
27038
+ DocumentTest: test_converts_itself_into_a_string
27039
+ ------------------------------------------------
27040
+  (0.1ms) rollback transaction
27041
+  (0.1ms) begin transaction
27042
+ -----------------------------------------------------------------------
27043
+ DocumentTest: test_curly_brackets_in_src_attributes_should_be_unescaped
27044
+ -----------------------------------------------------------------------
27045
+  (0.1ms) rollback transaction
27046
+  (0.1ms) begin transaction
27047
+ ------------------------------------------------------------------------------
27048
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
27049
+ ------------------------------------------------------------------------------
27050
+  (0.1ms) rollback transaction
27051
+  (0.2ms) begin transaction
27052
+ ------------------------------------------------------------------------------
27053
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
27054
+ ------------------------------------------------------------------------------
27055
+  (0.1ms) rollback transaction
27056
+  (0.0ms) begin transaction
27057
+ ------------------------------------------------------------------
27058
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
27059
+ ------------------------------------------------------------------
27060
+  (0.1ms) rollback transaction
27061
+  (0.1ms) begin transaction
27062
+ ----------------------------------------------------------------------
27063
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
27064
+ ----------------------------------------------------------------------
27065
+  (0.0ms) rollback transaction
27066
+  (0.1ms) begin transaction
27067
+ --------------------------------------------
27068
+ NodeTest: test_can_be_replaced_by_a_<script>
27069
+ --------------------------------------------
27070
+  (0.0ms) rollback transaction
27071
+  (0.1ms) begin transaction
27072
+ -------------------------------------------
27073
+ NodeTest: test_can_be_replaced_by_a_<style>
27074
+ -------------------------------------------
27075
+  (0.0ms) rollback transaction
27076
+  (0.1ms) begin transaction
27077
+ ----------------------------------------
27078
+ NodeTest: test_should_have_a_script_path
27079
+ ----------------------------------------
27080
+  (0.1ms) rollback transaction
27081
+  (0.1ms) begin transaction
27082
+ --------------------------------------------
27083
+ NodeTest: test_should_have_a_stylesheet_path
27084
+ --------------------------------------------
27085
+  (0.0ms) rollback transaction
27086
+  (0.1ms) begin transaction
27087
+ -----------------------------------
27088
+ NodeTest: test_should_remove_itself
27089
+ -----------------------------------
27090
+  (0.1ms) rollback transaction
27091
+  (0.0ms) begin transaction
27092
+ ---------------------------------------------------
27093
+ ProcessorsTest: test_processing_imports_should_work
27094
+ ---------------------------------------------------
27095
+  (0.0ms) rollback transaction
27096
+  (0.1ms) begin transaction
27097
+ ---------------------------------------------------
27098
+ ProcessorsTest: test_processing_scripts_should_work
27099
+ ---------------------------------------------------
27100
+  (0.1ms) rollback transaction
27101
+  (0.1ms) begin transaction
27102
+ -------------------------------------------------------
27103
+ ProcessorsTest: test_processing_stylesheets_should_work
27104
+ -------------------------------------------------------
27105
+  (0.1ms) rollback transaction
27106
+  (0.1ms) begin transaction
27107
+ -------------------------------------
27108
+ Helpers: test_html_import_should_work
27109
+ -------------------------------------
27110
+  (0.1ms) rollback transaction
27111
+  (0.1ms) begin transaction
27112
+ -----------------------------------------------------------------------------
27113
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
27114
+ -----------------------------------------------------------------------------
27115
+  (0.1ms) rollback transaction
27116
+  (0.1ms) begin transaction
27117
+ ------------------------------------------
27118
+ DocumentTest: test_can_access_html_imports
27119
+ ------------------------------------------
27120
+  (0.0ms) rollback transaction
27121
+  (0.1ms) begin transaction
27122
+ -------------------------------------
27123
+ DocumentTest: test_can_access_scripts
27124
+ -------------------------------------
27125
+  (0.0ms) rollback transaction
27126
+  (0.1ms) begin transaction
27127
+ -----------------------------------------
27128
+ DocumentTest: test_can_access_stylesheets
27129
+ -----------------------------------------
27130
+  (0.0ms) rollback transaction
27131
+  (0.1ms) begin transaction
27132
+ ------------------------------------------------
27133
+ DocumentTest: test_converts_itself_into_a_string
27134
+ ------------------------------------------------
27135
+  (0.2ms) rollback transaction
27136
+  (0.1ms) begin transaction
27137
+ -----------------------------------------------------------------------
27138
+ DocumentTest: test_curly_brackets_in_src_attributes_should_be_unescaped
27139
+ -----------------------------------------------------------------------
27140
+  (0.1ms) rollback transaction
27141
+  (0.1ms) begin transaction
27142
+ ------------------------------------------------------------------------------
27143
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
27144
+ ------------------------------------------------------------------------------
27145
+  (0.1ms) rollback transaction
27146
+  (0.1ms) begin transaction
27147
+ ------------------------------------------------------------------------------
27148
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
27149
+ ------------------------------------------------------------------------------
27150
+  (0.0ms) rollback transaction
27151
+  (0.0ms) begin transaction
27152
+ ------------------------------------------------------------------
27153
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
27154
+ ------------------------------------------------------------------
27155
+  (0.0ms) rollback transaction
27156
+  (0.1ms) begin transaction
27157
+ ----------------------------------------------------------------------
27158
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
27159
+ ----------------------------------------------------------------------
27160
+  (0.0ms) rollback transaction
27161
+  (0.3ms) begin transaction
27162
+ -------------------------------------------------------------------------------------------------
27163
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
27164
+ -------------------------------------------------------------------------------------------------
27165
+  (0.1ms) rollback transaction
27166
+  (0.1ms) begin transaction
27167
+ ----------------------------------------------------------
27168
+ CompressorsTest: test_compressor_should_remove_blank_lines
27169
+ ----------------------------------------------------------
27170
+  (0.1ms) rollback transaction
27171
+  (0.1ms) begin transaction
27172
+ -----------------------------------------------------------
27173
+ CompressorsTest: test_compressor_should_remove_css_comments
27174
+ -----------------------------------------------------------
27175
+  (0.1ms) rollback transaction
27176
+  (0.1ms) begin transaction
27177
+ ------------------------------------------------------------
27178
+ CompressorsTest: test_compressor_should_remove_html_comments
27179
+ ------------------------------------------------------------
27180
+  (0.0ms) rollback transaction
27181
+  (0.1ms) begin transaction
27182
+ -----------------------------------------------------------------------------
27183
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
27184
+ -----------------------------------------------------------------------------
27185
+  (0.1ms) rollback transaction
27186
+  (0.1ms) begin transaction
27187
+ ------------------------------------------------------------------------------
27188
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
27189
+ ------------------------------------------------------------------------------
27190
+  (0.1ms) rollback transaction
27191
+  (0.1ms) begin transaction
27192
+ -------------------------------------------
27193
+ ResolverTest: test_should_evaluate_an_asset
27194
+ -------------------------------------------
27195
+  (0.1ms) rollback transaction
27196
+  (0.1ms) begin transaction
27197
+ -------------------------------------------------------------
27198
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
27199
+ -------------------------------------------------------------
27200
+  (0.1ms) rollback transaction
27201
+  (0.1ms) begin transaction
27202
+ ----------------------------------------
27203
+ ResolverTest: test_should_require_assets
27204
+ ----------------------------------------
27205
+  (0.1ms) rollback transaction
27206
+  (0.1ms) begin transaction
27207
+ -----------------------------------------------
27208
+ ResolverTest: test_should_resolve_absolute_path
27209
+ -----------------------------------------------
27210
+  (0.1ms) rollback transaction
27211
+  (0.1ms) begin transaction
27212
+ ---------------------------------------------------------------------------------
27213
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
27214
+ ---------------------------------------------------------------------------------
27215
+ Processing by DummyController#assets as HTML
27216
+ Completed 200 OK in 8ms (Views: 0.1ms | ActiveRecord: 0.0ms)
27217
+  (0.1ms) rollback transaction
27218
+  (0.1ms) begin transaction
27219
+ ---------------------------------------------------
27220
+ ProcessorsTest: test_processing_imports_should_work
27221
+ ---------------------------------------------------
27222
+  (0.1ms) rollback transaction
27223
+  (0.1ms) begin transaction
27224
+ ----------------------------------------------------
27225
+ ProcessorsTest: test_processing_scripts_escapes_<!--
27226
+ ----------------------------------------------------
27227
+  (0.1ms) rollback transaction
27228
+  (0.1ms) begin transaction
27229
+ ---------------------------------------------------------
27230
+ ProcessorsTest: test_processing_scripts_escapes_</script>
27231
+ ---------------------------------------------------------
27232
+  (0.1ms) rollback transaction
27233
+  (0.1ms) begin transaction
27234
+ ---------------------------------------------------
27235
+ ProcessorsTest: test_processing_scripts_should_work
27236
+ ---------------------------------------------------
27237
+  (0.1ms) rollback transaction
27238
+  (0.1ms) begin transaction
27239
+ -------------------------------------------------------
27240
+ ProcessorsTest: test_processing_stylesheets_should_work
27241
+ -------------------------------------------------------
27242
+  (0.1ms) rollback transaction
27243
+  (0.1ms) begin transaction
27244
+ -----------------------------------------------------------------------------
27245
+ DocumentTest: test_ampersands,_spaces,_and_curly-brackets_should_be_unescaped
27246
+ -----------------------------------------------------------------------------
27247
+  (0.1ms) rollback transaction
27248
+  (0.0ms) begin transaction
27249
+ ------------------------------------------
27250
+ DocumentTest: test_can_access_html_imports
27251
+ ------------------------------------------
27252
+  (0.0ms) rollback transaction
27253
+  (0.1ms) begin transaction
27254
+ -------------------------------------
27255
+ DocumentTest: test_can_access_scripts
27256
+ -------------------------------------
27257
+  (0.0ms) rollback transaction
27258
+  (0.1ms) begin transaction
27259
+ -----------------------------------------
27260
+ DocumentTest: test_can_access_stylesheets
27261
+ -----------------------------------------
27262
+  (0.1ms) rollback transaction
27263
+  (0.1ms) begin transaction
27264
+ ------------------------------------------------
27265
+ DocumentTest: test_converts_itself_into_a_string
27266
+ ------------------------------------------------
27267
+  (0.1ms) rollback transaction
27268
+  (0.1ms) begin transaction
27269
+ -----------------------------------------------------------------------
27270
+ DocumentTest: test_curly_brackets_in_src_attributes_should_be_unescaped
27271
+ -----------------------------------------------------------------------
27272
+  (0.1ms) rollback transaction
27273
+  (0.1ms) begin transaction
27274
+ ------------------------------------------------------------------------------
27275
+ DocumentTest: test_escaped_double_quotes_in_JavaScript_should_not_be_unescaped
27276
+ ------------------------------------------------------------------------------
27277
+  (0.0ms) rollback transaction
27278
+  (0.1ms) begin transaction
27279
+ ------------------------------------------------------------------------------
27280
+ DocumentTest: test_escaped_single_quotes_in_JavaScript_should_not_be_unescaped
27281
+ ------------------------------------------------------------------------------
27282
+  (0.1ms) rollback transaction
27283
+  (0.1ms) begin transaction
27284
+ ------------------------------------------------------------------
27285
+ DocumentTest: test_optional_attribute_syntax_should_not_be_removed
27286
+ ------------------------------------------------------------------
27287
+  (0.0ms) rollback transaction
27288
+  (0.1ms) begin transaction
27289
+ ----------------------------------------------------------------------
27290
+ DocumentTest: test_the_selected_attribute_should_be_rendered_correctly
27291
+ ----------------------------------------------------------------------
27292
+  (0.1ms) rollback transaction
27293
+  (0.1ms) begin transaction
27294
+ -------------------------------------
27295
+ Helpers: test_html_import_should_work
27296
+ -------------------------------------
27297
+  (0.1ms) rollback transaction
27298
+  (0.1ms) begin transaction
27299
+ -------------------------------------------------------------------------------------------------
27300
+ CompressorsTest: test_compressor_should_not_attempt_to_remove_javascript_comments_within_a_string
27301
+ -------------------------------------------------------------------------------------------------
27302
+  (0.0ms) rollback transaction
27303
+  (0.1ms) begin transaction
27304
+ ----------------------------------------------------------
27305
+ CompressorsTest: test_compressor_should_remove_blank_lines
27306
+ ----------------------------------------------------------
27307
+  (0.0ms) rollback transaction
27308
+  (0.1ms) begin transaction
27309
+ -----------------------------------------------------------
27310
+ CompressorsTest: test_compressor_should_remove_css_comments
27311
+ -----------------------------------------------------------
27312
+  (0.0ms) rollback transaction
27313
+  (0.0ms) begin transaction
27314
+ ------------------------------------------------------------
27315
+ CompressorsTest: test_compressor_should_remove_html_comments
27316
+ ------------------------------------------------------------
27317
+  (0.0ms) rollback transaction
27318
+  (0.0ms) begin transaction
27319
+ -----------------------------------------------------------------------------
27320
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
27321
+ -----------------------------------------------------------------------------
27322
+  (0.0ms) rollback transaction
27323
+  (0.1ms) begin transaction
27324
+ ------------------------------------------------------------------------------
27325
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
27326
+ ------------------------------------------------------------------------------
27327
+  (0.1ms) rollback transaction
27328
+  (0.1ms) begin transaction
27329
+ ---------------------------------------------------------------------------------
27330
+ DummyAppIntegrationTest: test_the_test_files_should_get_compiled_and_concatenated
27331
+ ---------------------------------------------------------------------------------
27332
+ Processing by DummyController#assets as HTML
27333
+ Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 0.0ms)
27334
+  (0.1ms) rollback transaction
27335
+  (0.1ms) begin transaction
27336
+ -------------------------------------------
27337
+ ResolverTest: test_should_evaluate_an_asset
27338
+ -------------------------------------------
27339
+  (0.0ms) rollback transaction
27340
+  (0.0ms) begin transaction
27341
+ -------------------------------------------------------------
27342
+ ResolverTest: test_should_indicate_if_asset_should_be_inlined
27343
+ -------------------------------------------------------------
27344
+  (0.0ms) rollback transaction
27345
+  (0.0ms) begin transaction
27346
+ ----------------------------------------
27347
+ ResolverTest: test_should_require_assets
27348
+ ----------------------------------------
27349
+  (0.1ms) rollback transaction
27350
+  (0.1ms) begin transaction
27351
+ -----------------------------------------------
27352
+ ResolverTest: test_should_resolve_absolute_path
27353
+ -----------------------------------------------
27354
+  (0.1ms) rollback transaction
27355
+  (0.0ms) begin transaction
27356
+ --------------------------------------------
27357
+ NodeTest: test_can_be_replaced_by_a_<script>
27358
+ --------------------------------------------
27359
+  (0.1ms) rollback transaction
27360
+  (0.1ms) begin transaction
27361
+ -------------------------------------------
27362
+ NodeTest: test_can_be_replaced_by_a_<style>
27363
+ -------------------------------------------
27364
+  (0.1ms) rollback transaction
27365
+  (0.1ms) begin transaction
27366
+ ----------------------------------------
27367
+ NodeTest: test_should_have_a_script_path
27368
+ ----------------------------------------
27369
+  (0.1ms) rollback transaction
27370
+  (0.1ms) begin transaction
27371
+ --------------------------------------------
27372
+ NodeTest: test_should_have_a_stylesheet_path
27373
+ --------------------------------------------
27374
+  (0.1ms) rollback transaction
27375
+  (0.1ms) begin transaction
27376
+ -----------------------------------
27377
+ NodeTest: test_should_remove_itself
27378
+ -----------------------------------
27379
+  (0.0ms) rollback transaction