emcee 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/emcee.rb +7 -0
  5. data/lib/emcee/compressors/html_compressor.rb +49 -0
  6. data/lib/emcee/helpers/action_view.rb +34 -0
  7. data/lib/emcee/helpers/sprockets_compressing.rb +32 -0
  8. data/lib/emcee/helpers/sprockets_view.rb +29 -0
  9. data/lib/emcee/processors/html_processor.rb +155 -0
  10. data/lib/emcee/railtie.rb +15 -0
  11. data/lib/emcee/version.rb +3 -0
  12. data/lib/generators/emcee/install/install_generator.rb +23 -0
  13. data/lib/generators/emcee/install/templates/application.html +9 -0
  14. data/lib/tasks/emcee_tasks.rake +4 -0
  15. data/test/compressors_test.rb +41 -0
  16. data/test/controllers_test.rb +16 -0
  17. data/test/dummy/README.rdoc +28 -0
  18. data/test/dummy/Rakefile +6 -0
  19. data/test/dummy/app/assets/elements/application.html +12 -0
  20. data/test/dummy/app/assets/elements/test/test2.html +2 -0
  21. data/test/dummy/app/assets/elements/test/test3.html +1 -0
  22. data/test/dummy/app/assets/elements/test1.html +1 -0
  23. data/test/dummy/app/assets/javascripts/application.js +13 -0
  24. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  25. data/test/dummy/app/controllers/application_controller.rb +5 -0
  26. data/test/dummy/app/controllers/dummy_controller.rb +4 -0
  27. data/test/dummy/app/helpers/application_helper.rb +2 -0
  28. data/test/dummy/app/views/dummy/index.html.erb +1 -0
  29. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  30. data/test/dummy/bin/bundle +3 -0
  31. data/test/dummy/bin/rails +4 -0
  32. data/test/dummy/bin/rake +4 -0
  33. data/test/dummy/config.ru +4 -0
  34. data/test/dummy/config/application.rb +23 -0
  35. data/test/dummy/config/boot.rb +5 -0
  36. data/test/dummy/config/database.yml +25 -0
  37. data/test/dummy/config/environment.rb +5 -0
  38. data/test/dummy/config/environments/development.rb +29 -0
  39. data/test/dummy/config/environments/production.rb +80 -0
  40. data/test/dummy/config/environments/test.rb +36 -0
  41. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  42. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  43. data/test/dummy/config/initializers/inflections.rb +16 -0
  44. data/test/dummy/config/initializers/mime_types.rb +5 -0
  45. data/test/dummy/config/initializers/secret_token.rb +12 -0
  46. data/test/dummy/config/initializers/session_store.rb +3 -0
  47. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  48. data/test/dummy/config/locales/en.yml +23 -0
  49. data/test/dummy/config/routes.rb +3 -0
  50. data/test/dummy/db/development.sqlite3 +0 -0
  51. data/test/dummy/db/test.sqlite3 +0 -0
  52. data/test/dummy/log/development.log +12 -0
  53. data/test/dummy/log/test.log +2433 -0
  54. data/test/dummy/public/404.html +58 -0
  55. data/test/dummy/public/422.html +58 -0
  56. data/test/dummy/public/500.html +57 -0
  57. data/test/dummy/public/favicon.ico +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/01abb54333b8d67888355b2f855692e8 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/1e24025f59396708b3bb44543bed32fc +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/219d0afb67879a67bae32b4fe4c708ac +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/32cae461a9446107294c8a0230f5080c +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/4fd1effec4d6579ba9d4f03ed156a15b +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/63ab3ecb77a01edbed6db1aca4d690fc +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/6c9d8a21af4539e19a3462e79ac4d70c +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/a69c3d00e22ad6c0d6ece35c9fd5f316 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/af6ba4ae23c6790e0f474b01ceee8dd9 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/c04739a2061e8e023568aabaa0e801d2 +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/cf517b62bd978b748afe38d5beb317de +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/df6cfcc50da209231a7d9e140e5bafdc +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/e0949aa3dcdcab5f8b45d30e26f6ddd2 +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/e1d520d14db311ab6347be6426dac6f5 +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/ffd4adb86602a60c7fcedd5d472166d3 +0 -0
  79. data/test/dummy/tmp/cache/assets/test/sprockets/070957bfe375a537750196a12d9e6d1a +0 -0
  80. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  81. data/test/dummy/tmp/cache/assets/test/sprockets/1e24025f59396708b3bb44543bed32fc +0 -0
  82. data/test/dummy/tmp/cache/assets/test/sprockets/219d0afb67879a67bae32b4fe4c708ac +0 -0
  83. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  84. data/test/dummy/tmp/cache/assets/test/sprockets/32cae461a9446107294c8a0230f5080c +0 -0
  85. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  86. data/test/dummy/tmp/cache/assets/test/sprockets/4fd1effec4d6579ba9d4f03ed156a15b +0 -0
  87. data/test/dummy/tmp/cache/assets/test/sprockets/6c9d8a21af4539e19a3462e79ac4d70c +0 -0
  88. data/test/dummy/tmp/cache/assets/test/sprockets/a69c3d00e22ad6c0d6ece35c9fd5f316 +0 -0
  89. data/test/dummy/tmp/cache/assets/test/sprockets/af6ba4ae23c6790e0f474b01ceee8dd9 +0 -0
  90. data/test/dummy/tmp/cache/assets/test/sprockets/cf517b62bd978b748afe38d5beb317de +0 -0
  91. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  92. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  93. data/test/dummy/tmp/cache/assets/test/sprockets/df6cfcc50da209231a7d9e140e5bafdc +0 -0
  94. data/test/dummy/tmp/cache/assets/test/sprockets/e0949aa3dcdcab5f8b45d30e26f6ddd2 +0 -0
  95. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  96. data/test/dummy/tmp/cache/assets/test/sprockets/fb7c86cdcce596d8b3c14ce236bf73c5 +0 -0
  97. data/test/dummy/tmp/cache/assets/test/sprockets/ffd4adb86602a60c7fcedd5d472166d3 +0 -0
  98. data/test/dummy/vendor/assets/elements/test4.html +1 -0
  99. data/test/emcee_test.rb +7 -0
  100. data/test/helpers_test.rb +7 -0
  101. data/test/test_helper.rb +15 -0
  102. metadata +259 -0
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Dummy::Application.routes.draw do
2
+ root "dummy#index"
3
+ end
File without changes
File without changes
@@ -0,0 +1,12 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2014-03-04 20:48:16 -0500
4
+ Processing by DummyController#index as HTML
5
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
6
+ Completed 200 OK in 83ms (Views: 82.8ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-04 20:48:17 -0500
10
+
11
+
12
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-04 20:48:17 -0500
@@ -0,0 +1,2433 @@
1
+  (0.2ms) begin transaction
2
+ ---------------------
3
+ EmceeTest: test_truth
4
+ ---------------------
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ --------------------------------------------
8
+ GeneratorsTest: test_should_invoke_generator
9
+ --------------------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ -------------------------------------
13
+ Helpers: test_html_import_should_work
14
+ -------------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.2ms) begin transaction
17
+ ---------------------
18
+ EmceeTest: test_truth
19
+ ---------------------
20
+  (0.0ms) rollback transaction
21
+  (0.0ms) begin transaction
22
+ --------------------------------------------
23
+ GeneratorsTest: test_should_invoke_generator
24
+ --------------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ -------------------------------------
28
+ Helpers: test_html_import_should_work
29
+ -------------------------------------
30
+  (0.1ms) rollback transaction
31
+  (0.3ms) begin transaction
32
+ ---------------------
33
+ EmceeTest: test_truth
34
+ ---------------------
35
+  (0.1ms) rollback transaction
36
+  (0.1ms) begin transaction
37
+ --------------------------------------------
38
+ GeneratorsTest: test_should_invoke_generator
39
+ --------------------------------------------
40
+  (0.0ms) rollback transaction
41
+  (0.0ms) begin transaction
42
+ -------------------------------------
43
+ Helpers: test_html_import_should_work
44
+ -------------------------------------
45
+  (0.1ms) rollback transaction
46
+  (0.3ms) begin transaction
47
+ ---------------------
48
+ EmceeTest: test_truth
49
+ ---------------------
50
+  (0.0ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ --------------------------------------------
53
+ GeneratorsTest: test_should_invoke_generator
54
+ --------------------------------------------
55
+  (0.0ms) rollback transaction
56
+  (0.0ms) begin transaction
57
+ -------------------------------------
58
+ Helpers: test_html_import_should_work
59
+ -------------------------------------
60
+  (0.1ms) rollback transaction
61
+  (0.2ms) begin transaction
62
+ ---------------------
63
+ EmceeTest: test_truth
64
+ ---------------------
65
+  (0.1ms) rollback transaction
66
+  (0.0ms) begin transaction
67
+ --------------------------------------------
68
+ GeneratorsTest: test_should_invoke_generator
69
+ --------------------------------------------
70
+  (0.0ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+ -------------------------------------
73
+ Helpers: test_html_import_should_work
74
+ -------------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.2ms) begin transaction
77
+ ---------------------
78
+ EmceeTest: test_truth
79
+ ---------------------
80
+  (0.1ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ --------------------------------------------
83
+ GeneratorsTest: test_should_invoke_generator
84
+ --------------------------------------------
85
+  (0.1ms) rollback transaction
86
+  (0.0ms) begin transaction
87
+ -------------------------------------
88
+ Helpers: test_html_import_should_work
89
+ -------------------------------------
90
+  (0.0ms) rollback transaction
91
+  (0.3ms) begin transaction
92
+ ---------------------
93
+ EmceeTest: test_truth
94
+ ---------------------
95
+  (0.1ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ --------------------------------------------
98
+ GeneratorsTest: test_should_invoke_generator
99
+ --------------------------------------------
100
+  (0.0ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ -------------------------------------
103
+ Helpers: test_html_import_should_work
104
+ -------------------------------------
105
+  (0.1ms) rollback transaction
106
+  (0.2ms) begin transaction
107
+ ---------------------
108
+ EmceeTest: test_truth
109
+ ---------------------
110
+  (0.1ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ --------------------------------------------
113
+ GeneratorsTest: test_should_invoke_generator
114
+ --------------------------------------------
115
+  (0.0ms) rollback transaction
116
+  (0.0ms) begin transaction
117
+ -------------------------------------
118
+ Helpers: test_html_import_should_work
119
+ -------------------------------------
120
+  (0.0ms) rollback transaction
121
+  (0.3ms) begin transaction
122
+ ---------------------
123
+ EmceeTest: test_truth
124
+ ---------------------
125
+  (0.1ms) rollback transaction
126
+  (0.0ms) begin transaction
127
+ --------------------------------------------
128
+ GeneratorsTest: test_should_invoke_generator
129
+ --------------------------------------------
130
+  (0.1ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+ -------------------------------------
133
+ Helpers: test_html_import_should_work
134
+ -------------------------------------
135
+  (0.1ms) rollback transaction
136
+  (0.4ms) begin transaction
137
+ ---------------------
138
+ EmceeTest: test_truth
139
+ ---------------------
140
+  (0.1ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ -------------------------------------
143
+ Helpers: test_html_import_should_work
144
+ -------------------------------------
145
+  (0.1ms) rollback transaction
146
+  (0.4ms) begin transaction
147
+ --------------------------------------
148
+ ControllersTest: test_should_get_index
149
+ --------------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ ---------------------
153
+ EmceeTest: test_truth
154
+ ---------------------
155
+  (0.0ms) rollback transaction
156
+  (0.0ms) begin transaction
157
+ -------------------------------------
158
+ Helpers: test_html_import_should_work
159
+ -------------------------------------
160
+  (0.1ms) rollback transaction
161
+  (0.2ms) begin transaction
162
+ --------------------------------------
163
+ ControllersTest: test_should_get_index
164
+ --------------------------------------
165
+ Processing by DummyController#index as HTML
166
+ Completed 500 Internal Server Error in 10ms
167
+  (0.1ms) rollback transaction
168
+  (0.0ms) begin transaction
169
+ ---------------------
170
+ EmceeTest: test_truth
171
+ ---------------------
172
+  (0.0ms) rollback transaction
173
+  (0.0ms) begin transaction
174
+ -------------------------------------
175
+ Helpers: test_html_import_should_work
176
+ -------------------------------------
177
+  (0.0ms) rollback transaction
178
+  (0.2ms) begin transaction
179
+ --------------------------------------
180
+ ControllersTest: test_should_get_index
181
+ --------------------------------------
182
+ Processing by DummyController#index as HTML
183
+ Completed 500 Internal Server Error in 5ms
184
+  (0.1ms) rollback transaction
185
+  (0.1ms) begin transaction
186
+ ---------------------
187
+ EmceeTest: test_truth
188
+ ---------------------
189
+  (0.0ms) rollback transaction
190
+  (0.0ms) begin transaction
191
+ -------------------------------------
192
+ Helpers: test_html_import_should_work
193
+ -------------------------------------
194
+  (0.0ms) rollback transaction
195
+  (0.3ms) begin transaction
196
+ --------------------------------------
197
+ ControllersTest: test_should_get_index
198
+ --------------------------------------
199
+ Processing by DummyController#index as HTML
200
+ Completed 500 Internal Server Error in 5ms
201
+  (0.1ms) rollback transaction
202
+  (0.0ms) begin transaction
203
+ ---------------------
204
+ EmceeTest: test_truth
205
+ ---------------------
206
+  (0.1ms) rollback transaction
207
+  (0.0ms) begin transaction
208
+ -------------------------------------
209
+ Helpers: test_html_import_should_work
210
+ -------------------------------------
211
+  (0.0ms) rollback transaction
212
+  (0.2ms) begin transaction
213
+ --------------------------------------
214
+ ControllersTest: test_should_get_index
215
+ --------------------------------------
216
+ Processing by DummyController#index as HTML
217
+ Rendered dummy/index.html.erb within layouts/application (9.7ms)
218
+ Completed 200 OK in 30ms (Views: 30.0ms | ActiveRecord: 0.0ms)
219
+  (0.1ms) rollback transaction
220
+  (0.1ms) begin transaction
221
+ ---------------------
222
+ EmceeTest: test_truth
223
+ ---------------------
224
+  (0.1ms) rollback transaction
225
+  (0.0ms) begin transaction
226
+ -------------------------------------
227
+ Helpers: test_html_import_should_work
228
+ -------------------------------------
229
+  (0.1ms) rollback transaction
230
+  (0.3ms) begin transaction
231
+ --------------------------------------
232
+ ControllersTest: test_should_get_index
233
+ --------------------------------------
234
+ Processing by DummyController#index as HTML
235
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
236
+ Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms)
237
+  (0.1ms) rollback transaction
238
+  (0.1ms) begin transaction
239
+ ---------------------
240
+ EmceeTest: test_truth
241
+ ---------------------
242
+  (0.1ms) rollback transaction
243
+  (0.1ms) begin transaction
244
+ -------------------------------------
245
+ Helpers: test_html_import_should_work
246
+ -------------------------------------
247
+  (0.1ms) rollback transaction
248
+  (0.2ms) begin transaction
249
+ --------------------------------------
250
+ ControllersTest: test_should_get_index
251
+ --------------------------------------
252
+ Processing by DummyController#index as HTML
253
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
254
+ Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
255
+  (0.1ms) rollback transaction
256
+  (0.1ms) begin transaction
257
+ ---------------------
258
+ EmceeTest: test_truth
259
+ ---------------------
260
+  (0.0ms) rollback transaction
261
+  (0.0ms) begin transaction
262
+ -------------------------------------
263
+ Helpers: test_html_import_should_work
264
+ -------------------------------------
265
+  (0.0ms) rollback transaction
266
+  (0.2ms) begin transaction
267
+ --------------------------------------
268
+ ControllersTest: test_should_get_index
269
+ --------------------------------------
270
+ Processing by DummyController#index as HTML
271
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
272
+ Completed 500 Internal Server Error in 17ms
273
+  (0.1ms) rollback transaction
274
+  (0.0ms) begin transaction
275
+ ---------------------
276
+ EmceeTest: test_truth
277
+ ---------------------
278
+  (0.1ms) rollback transaction
279
+  (0.0ms) begin transaction
280
+ -------------------------------------
281
+ Helpers: test_html_import_should_work
282
+ -------------------------------------
283
+  (0.0ms) rollback transaction
284
+  (0.3ms) begin transaction
285
+ --------------------------------------
286
+ ControllersTest: test_should_get_index
287
+ --------------------------------------
288
+ Processing by DummyController#index as HTML
289
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
290
+ Completed 500 Internal Server Error in 18ms
291
+  (0.1ms) rollback transaction
292
+  (0.1ms) begin transaction
293
+ ---------------------
294
+ EmceeTest: test_truth
295
+ ---------------------
296
+  (0.1ms) rollback transaction
297
+  (0.0ms) begin transaction
298
+ -------------------------------------
299
+ Helpers: test_html_import_should_work
300
+ -------------------------------------
301
+  (0.0ms) rollback transaction
302
+  (0.2ms) begin transaction
303
+ --------------------------------------
304
+ ControllersTest: test_should_get_index
305
+ --------------------------------------
306
+ Processing by DummyController#index as HTML
307
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
308
+ Completed 500 Internal Server Error in 18ms
309
+  (0.1ms) rollback transaction
310
+  (0.0ms) begin transaction
311
+ ---------------------
312
+ EmceeTest: test_truth
313
+ ---------------------
314
+  (0.0ms) rollback transaction
315
+  (0.0ms) begin transaction
316
+ -------------------------------------
317
+ Helpers: test_html_import_should_work
318
+ -------------------------------------
319
+  (0.0ms) rollback transaction
320
+  (0.2ms) begin transaction
321
+ --------------------------------------
322
+ ControllersTest: test_should_get_index
323
+ --------------------------------------
324
+ Processing by DummyController#index as HTML
325
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
326
+ Completed 200 OK in 29ms (Views: 28.8ms | ActiveRecord: 0.0ms)
327
+  (0.1ms) rollback transaction
328
+  (0.1ms) begin transaction
329
+ ---------------------
330
+ EmceeTest: test_truth
331
+ ---------------------
332
+  (0.1ms) rollback transaction
333
+  (0.0ms) begin transaction
334
+ -------------------------------------
335
+ Helpers: test_html_import_should_work
336
+ -------------------------------------
337
+  (0.1ms) rollback transaction
338
+  (0.2ms) begin transaction
339
+ --------------------------------------
340
+ ControllersTest: test_should_get_index
341
+ --------------------------------------
342
+ Processing by DummyController#index as HTML
343
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
344
+ Completed 500 Internal Server Error in 18ms
345
+  (0.1ms) rollback transaction
346
+  (0.0ms) begin transaction
347
+ ---------------------
348
+ EmceeTest: test_truth
349
+ ---------------------
350
+  (0.0ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+ -------------------------------------
353
+ Helpers: test_html_import_should_work
354
+ -------------------------------------
355
+  (0.0ms) rollback transaction
356
+  (0.2ms) begin transaction
357
+ --------------------------------------
358
+ ControllersTest: test_should_get_index
359
+ --------------------------------------
360
+ Processing by DummyController#index as HTML
361
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
362
+ Completed 200 OK in 33ms (Views: 32.6ms | ActiveRecord: 0.0ms)
363
+  (0.1ms) rollback transaction
364
+  (0.1ms) begin transaction
365
+ ---------------------
366
+ EmceeTest: test_truth
367
+ ---------------------
368
+  (0.0ms) rollback transaction
369
+  (0.1ms) begin transaction
370
+ -------------------------------------
371
+ Helpers: test_html_import_should_work
372
+ -------------------------------------
373
+  (0.1ms) rollback transaction
374
+  (0.2ms) begin transaction
375
+ --------------------------------------
376
+ ControllersTest: test_should_get_index
377
+ --------------------------------------
378
+ Processing by DummyController#index as HTML
379
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
380
+ Completed 500 Internal Server Error in 18ms
381
+  (0.1ms) rollback transaction
382
+  (0.1ms) begin transaction
383
+ ---------------------
384
+ EmceeTest: test_truth
385
+ ---------------------
386
+  (0.1ms) rollback transaction
387
+  (0.0ms) begin transaction
388
+ -------------------------------------
389
+ Helpers: test_html_import_should_work
390
+ -------------------------------------
391
+  (0.1ms) rollback transaction
392
+  (0.2ms) begin transaction
393
+ --------------------------------------
394
+ ControllersTest: test_should_get_index
395
+ --------------------------------------
396
+ Processing by DummyController#index as HTML
397
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
398
+ Completed 200 OK in 36ms (Views: 36.0ms | ActiveRecord: 0.0ms)
399
+  (0.1ms) rollback transaction
400
+  (0.1ms) begin transaction
401
+ ---------------------
402
+ EmceeTest: test_truth
403
+ ---------------------
404
+  (0.0ms) rollback transaction
405
+  (0.0ms) begin transaction
406
+ -------------------------------------
407
+ Helpers: test_html_import_should_work
408
+ -------------------------------------
409
+  (0.0ms) rollback transaction
410
+  (0.2ms) begin transaction
411
+ --------------------------------------
412
+ ControllersTest: test_should_get_index
413
+ --------------------------------------
414
+ Processing by DummyController#index as HTML
415
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
416
+ Completed 200 OK in 38ms (Views: 37.2ms | ActiveRecord: 0.0ms)
417
+  (0.1ms) rollback transaction
418
+  (0.0ms) begin transaction
419
+ ---------------------
420
+ EmceeTest: test_truth
421
+ ---------------------
422
+  (0.0ms) rollback transaction
423
+  (0.0ms) begin transaction
424
+ -------------------------------------
425
+ Helpers: test_html_import_should_work
426
+ -------------------------------------
427
+  (0.0ms) rollback transaction
428
+  (0.2ms) begin transaction
429
+ --------------------------------------
430
+ ControllersTest: test_should_get_index
431
+ --------------------------------------
432
+ Processing by DummyController#index as HTML
433
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
434
+ Completed 500 Internal Server Error in 21ms
435
+  (0.1ms) rollback transaction
436
+  (0.0ms) begin transaction
437
+ ---------------------
438
+ EmceeTest: test_truth
439
+ ---------------------
440
+  (0.0ms) rollback transaction
441
+  (0.0ms) begin transaction
442
+ -------------------------------------
443
+ Helpers: test_html_import_should_work
444
+ -------------------------------------
445
+  (0.0ms) rollback transaction
446
+  (0.2ms) begin transaction
447
+ --------------------------------------
448
+ ControllersTest: test_should_get_index
449
+ --------------------------------------
450
+ Processing by DummyController#index as HTML
451
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
452
+ Completed 200 OK in 33ms (Views: 32.8ms | ActiveRecord: 0.0ms)
453
+  (0.1ms) rollback transaction
454
+  (0.1ms) begin transaction
455
+ ---------------------
456
+ EmceeTest: test_truth
457
+ ---------------------
458
+  (0.1ms) rollback transaction
459
+  (0.0ms) begin transaction
460
+ -------------------------------------
461
+ Helpers: test_html_import_should_work
462
+ -------------------------------------
463
+  (0.1ms) rollback transaction
464
+  (0.3ms) begin transaction
465
+ ---------------------------------------------------------
466
+ ControllersTest: test_index_should_have_four_html_imports
467
+ ---------------------------------------------------------
468
+ Processing by DummyController#index as HTML
469
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
470
+ Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms)
471
+  (0.1ms) rollback transaction
472
+  (0.1ms) begin transaction
473
+ --------------------------------------
474
+ ControllersTest: test_should_get_index
475
+ --------------------------------------
476
+ Processing by DummyController#index as HTML
477
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
478
+  (0.1ms) rollback transaction
479
+  (0.0ms) begin transaction
480
+ ---------------------
481
+ EmceeTest: test_truth
482
+ ---------------------
483
+  (0.0ms) rollback transaction
484
+  (0.0ms) begin transaction
485
+ -------------------------------------
486
+ Helpers: test_html_import_should_work
487
+ -------------------------------------
488
+  (0.0ms) rollback transaction
489
+  (0.3ms) begin transaction
490
+ ---------------------------------------------------------
491
+ ControllersTest: test_index_should_have_four_html_imports
492
+ ---------------------------------------------------------
493
+ Processing by DummyController#index as HTML
494
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
495
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
496
+  (0.1ms) rollback transaction
497
+  (0.1ms) begin transaction
498
+ --------------------------------------
499
+ ControllersTest: test_should_get_index
500
+ --------------------------------------
501
+ Processing by DummyController#index as HTML
502
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
503
+  (0.1ms) rollback transaction
504
+  (0.1ms) begin transaction
505
+ ---------------------
506
+ EmceeTest: test_truth
507
+ ---------------------
508
+  (0.0ms) rollback transaction
509
+  (0.0ms) begin transaction
510
+ -------------------------------------
511
+ Helpers: test_html_import_should_work
512
+ -------------------------------------
513
+  (0.0ms) rollback transaction
514
+  (0.2ms) begin transaction
515
+ ---------------------------------------------------------
516
+ ControllersTest: test_index_should_have_four_html_imports
517
+ ---------------------------------------------------------
518
+ Processing by DummyController#index as HTML
519
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
520
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
521
+  (0.1ms) rollback transaction
522
+  (0.1ms) begin transaction
523
+ --------------------------------------
524
+ ControllersTest: test_should_get_index
525
+ --------------------------------------
526
+ Processing by DummyController#index as HTML
527
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
528
+  (0.1ms) rollback transaction
529
+  (0.0ms) begin transaction
530
+ ---------------------
531
+ EmceeTest: test_truth
532
+ ---------------------
533
+  (0.0ms) rollback transaction
534
+  (0.0ms) begin transaction
535
+ -------------------------------------
536
+ Helpers: test_html_import_should_work
537
+ -------------------------------------
538
+  (0.0ms) rollback transaction
539
+  (0.2ms) begin transaction
540
+ ---------------------------------------------------------
541
+ ControllersTest: test_index_should_have_four_html_imports
542
+ ---------------------------------------------------------
543
+ Processing by DummyController#index as HTML
544
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
545
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
546
+  (0.1ms) rollback transaction
547
+  (0.1ms) begin transaction
548
+ --------------------------------------
549
+ ControllersTest: test_should_get_index
550
+ --------------------------------------
551
+ Processing by DummyController#index as HTML
552
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
553
+  (0.1ms) rollback transaction
554
+  (0.0ms) begin transaction
555
+ ---------------------
556
+ EmceeTest: test_truth
557
+ ---------------------
558
+  (0.0ms) rollback transaction
559
+  (0.0ms) begin transaction
560
+ -------------------------------------
561
+ Helpers: test_html_import_should_work
562
+ -------------------------------------
563
+  (0.1ms) rollback transaction
564
+  (0.2ms) begin transaction
565
+ ---------------------------------------------------------
566
+ ControllersTest: test_index_should_have_four_html_imports
567
+ ---------------------------------------------------------
568
+ Processing by DummyController#index as HTML
569
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
570
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
571
+  (0.2ms) rollback transaction
572
+  (0.1ms) begin transaction
573
+ --------------------------------------
574
+ ControllersTest: test_should_get_index
575
+ --------------------------------------
576
+ Processing by DummyController#index as HTML
577
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
578
+  (0.1ms) rollback transaction
579
+  (0.0ms) begin transaction
580
+ ---------------------
581
+ EmceeTest: test_truth
582
+ ---------------------
583
+  (0.0ms) rollback transaction
584
+  (0.0ms) begin transaction
585
+ -------------------------------------
586
+ Helpers: test_html_import_should_work
587
+ -------------------------------------
588
+  (0.1ms) rollback transaction
589
+  (0.2ms) begin transaction
590
+ ---------------------------------------------------------
591
+ ControllersTest: test_index_should_have_four_html_imports
592
+ ---------------------------------------------------------
593
+ Processing by DummyController#index as HTML
594
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
595
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
596
+  (0.1ms) rollback transaction
597
+  (0.1ms) begin transaction
598
+ --------------------------------------
599
+ ControllersTest: test_should_get_index
600
+ --------------------------------------
601
+ Processing by DummyController#index as HTML
602
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
603
+  (0.1ms) rollback transaction
604
+  (0.0ms) begin transaction
605
+ ---------------------
606
+ EmceeTest: test_truth
607
+ ---------------------
608
+  (0.0ms) rollback transaction
609
+  (0.1ms) begin transaction
610
+ -------------------------------------
611
+ Helpers: test_html_import_should_work
612
+ -------------------------------------
613
+  (0.0ms) rollback transaction
614
+  (0.2ms) begin transaction
615
+ ---------------------------------------------------------
616
+ ControllersTest: test_index_should_have_four_html_imports
617
+ ---------------------------------------------------------
618
+ Processing by DummyController#index as HTML
619
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
620
+ Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
621
+  (0.1ms) rollback transaction
622
+  (0.1ms) begin transaction
623
+ --------------------------------------
624
+ ControllersTest: test_should_get_index
625
+ --------------------------------------
626
+ Processing by DummyController#index as HTML
627
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
628
+  (0.2ms) rollback transaction
629
+  (0.0ms) begin transaction
630
+ ---------------------
631
+ EmceeTest: test_truth
632
+ ---------------------
633
+  (0.0ms) rollback transaction
634
+  (0.0ms) begin transaction
635
+ -------------------------------------
636
+ Helpers: test_html_import_should_work
637
+ -------------------------------------
638
+  (0.0ms) rollback transaction
639
+  (0.2ms) begin transaction
640
+ --------------------------------------------------------
641
+ ControllersTest: test_index_should_have_two_html_imports
642
+ --------------------------------------------------------
643
+ Processing by DummyController#index as HTML
644
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
645
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
646
+  (0.1ms) rollback transaction
647
+  (0.0ms) begin transaction
648
+ --------------------------------------
649
+ ControllersTest: test_should_get_index
650
+ --------------------------------------
651
+ Processing by DummyController#index as HTML
652
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
653
+  (0.1ms) rollback transaction
654
+  (0.0ms) begin transaction
655
+ ---------------------
656
+ EmceeTest: test_truth
657
+ ---------------------
658
+  (0.0ms) rollback transaction
659
+  (0.0ms) begin transaction
660
+ -------------------------------------
661
+ Helpers: test_html_import_should_work
662
+ -------------------------------------
663
+  (0.0ms) rollback transaction
664
+  (0.2ms) begin transaction
665
+ --------------------------------------------------------
666
+ ControllersTest: test_index_should_have_two_html_imports
667
+ --------------------------------------------------------
668
+ Processing by DummyController#index as HTML
669
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
670
+ Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
671
+  (0.1ms) rollback transaction
672
+  (0.0ms) begin transaction
673
+ --------------------------------------
674
+ ControllersTest: test_should_get_index
675
+ --------------------------------------
676
+ Processing by DummyController#index as HTML
677
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
678
+  (0.0ms) rollback transaction
679
+  (0.1ms) begin transaction
680
+ ---------------------
681
+ EmceeTest: test_truth
682
+ ---------------------
683
+  (0.0ms) rollback transaction
684
+  (0.0ms) begin transaction
685
+ -------------------------------------
686
+ Helpers: test_html_import_should_work
687
+ -------------------------------------
688
+  (0.0ms) rollback transaction
689
+  (0.2ms) begin transaction
690
+ ------------------------------------------------------------
691
+ CompressorsTest: test_compressor_should_remove_html_comments
692
+ ------------------------------------------------------------
693
+  (0.0ms) rollback transaction
694
+  (0.0ms) begin transaction
695
+ ----------------------------------------------------
696
+ ControllersTest: test_index_should_have_html_imports
697
+ ----------------------------------------------------
698
+ Processing by DummyController#index as HTML
699
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
700
+ Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms)
701
+  (0.1ms) rollback transaction
702
+  (0.1ms) begin transaction
703
+ --------------------------------------
704
+ ControllersTest: test_should_get_index
705
+ --------------------------------------
706
+ Processing by DummyController#index as HTML
707
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
708
+  (0.1ms) rollback transaction
709
+  (0.0ms) begin transaction
710
+ ---------------------
711
+ EmceeTest: test_truth
712
+ ---------------------
713
+  (0.0ms) rollback transaction
714
+  (0.1ms) begin transaction
715
+ -------------------------------------
716
+ Helpers: test_html_import_should_work
717
+ -------------------------------------
718
+  (0.1ms) rollback transaction
719
+  (0.2ms) begin transaction
720
+ ------------------------------------------------------------
721
+ CompressorsTest: test_compressor_should_remove_html_comments
722
+ ------------------------------------------------------------
723
+  (0.1ms) rollback transaction
724
+  (0.1ms) begin transaction
725
+ ----------------------------------------------------
726
+ ControllersTest: test_index_should_have_html_imports
727
+ ----------------------------------------------------
728
+ Processing by DummyController#index as HTML
729
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
730
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
731
+  (0.1ms) rollback transaction
732
+  (0.1ms) begin transaction
733
+ --------------------------------------
734
+ ControllersTest: test_should_get_index
735
+ --------------------------------------
736
+ Processing by DummyController#index as HTML
737
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
738
+  (0.1ms) rollback transaction
739
+  (0.1ms) begin transaction
740
+ ---------------------
741
+ EmceeTest: test_truth
742
+ ---------------------
743
+  (0.0ms) rollback transaction
744
+  (0.0ms) begin transaction
745
+ -------------------------------------
746
+ Helpers: test_html_import_should_work
747
+ -------------------------------------
748
+  (0.0ms) rollback transaction
749
+  (0.2ms) begin transaction
750
+ ------------------------------------------------------------
751
+ CompressorsTest: test_compressor_should_remove_html_comments
752
+ ------------------------------------------------------------
753
+  (0.0ms) rollback transaction
754
+  (0.0ms) begin transaction
755
+ ----------------------------------------------------
756
+ ControllersTest: test_index_should_have_html_imports
757
+ ----------------------------------------------------
758
+ Processing by DummyController#index as HTML
759
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
760
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
761
+  (0.1ms) rollback transaction
762
+  (0.1ms) begin transaction
763
+ --------------------------------------
764
+ ControllersTest: test_should_get_index
765
+ --------------------------------------
766
+ Processing by DummyController#index as HTML
767
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
768
+  (0.1ms) rollback transaction
769
+  (0.0ms) begin transaction
770
+ ---------------------
771
+ EmceeTest: test_truth
772
+ ---------------------
773
+  (0.0ms) rollback transaction
774
+  (0.0ms) begin transaction
775
+ -------------------------------------
776
+ Helpers: test_html_import_should_work
777
+ -------------------------------------
778
+  (0.0ms) rollback transaction
779
+  (0.2ms) begin transaction
780
+ ------------------------------------------------------------
781
+ CompressorsTest: test_compressor_should_remove_html_comments
782
+ ------------------------------------------------------------
783
+  (0.2ms) rollback transaction
784
+  (0.1ms) begin transaction
785
+ ----------------------------------------------------
786
+ ControllersTest: test_index_should_have_html_imports
787
+ ----------------------------------------------------
788
+ Processing by DummyController#index as HTML
789
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
790
+ Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.0ms)
791
+  (0.1ms) rollback transaction
792
+  (0.0ms) begin transaction
793
+ --------------------------------------
794
+ ControllersTest: test_should_get_index
795
+ --------------------------------------
796
+ Processing by DummyController#index as HTML
797
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
798
+  (0.0ms) rollback transaction
799
+  (0.0ms) begin transaction
800
+ ---------------------
801
+ EmceeTest: test_truth
802
+ ---------------------
803
+  (0.0ms) rollback transaction
804
+  (0.0ms) begin transaction
805
+ -------------------------------------
806
+ Helpers: test_html_import_should_work
807
+ -------------------------------------
808
+  (0.0ms) rollback transaction
809
+  (0.2ms) begin transaction
810
+ ------------------------------------------------------------
811
+ CompressorsTest: test_compressor_should_remove_html_comments
812
+ ------------------------------------------------------------
813
+  (0.2ms) rollback transaction
814
+  (0.1ms) begin transaction
815
+ ----------------------------------------------------
816
+ ControllersTest: test_index_should_have_html_imports
817
+ ----------------------------------------------------
818
+ Processing by DummyController#index as HTML
819
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
820
+ Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms)
821
+  (0.1ms) rollback transaction
822
+  (0.0ms) begin transaction
823
+ --------------------------------------
824
+ ControllersTest: test_should_get_index
825
+ --------------------------------------
826
+ Processing by DummyController#index as HTML
827
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
828
+  (0.0ms) rollback transaction
829
+  (0.0ms) begin transaction
830
+ ---------------------
831
+ EmceeTest: test_truth
832
+ ---------------------
833
+  (0.0ms) rollback transaction
834
+  (0.0ms) begin transaction
835
+ -------------------------------------
836
+ Helpers: test_html_import_should_work
837
+ -------------------------------------
838
+  (0.0ms) rollback transaction
839
+  (0.3ms) begin transaction
840
+ ------------------------------------------------------------
841
+ CompressorsTest: test_compressor_should_remove_html_comments
842
+ ------------------------------------------------------------
843
+  (0.2ms) rollback transaction
844
+  (0.1ms) begin transaction
845
+ ----------------------------------------------------
846
+ ControllersTest: test_index_should_have_html_imports
847
+ ----------------------------------------------------
848
+ Processing by DummyController#index as HTML
849
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
850
+ Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms)
851
+  (0.2ms) rollback transaction
852
+  (0.1ms) begin transaction
853
+ --------------------------------------
854
+ ControllersTest: test_should_get_index
855
+ --------------------------------------
856
+ Processing by DummyController#index as HTML
857
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
858
+  (0.1ms) rollback transaction
859
+  (0.1ms) begin transaction
860
+ ---------------------
861
+ EmceeTest: test_truth
862
+ ---------------------
863
+  (0.0ms) rollback transaction
864
+  (0.1ms) begin transaction
865
+ -------------------------------------
866
+ Helpers: test_html_import_should_work
867
+ -------------------------------------
868
+  (0.1ms) rollback transaction
869
+  (0.2ms) begin transaction
870
+ ------------------------------------------------------------
871
+ CompressorsTest: test_compressor_should_remove_html_comments
872
+ ------------------------------------------------------------
873
+  (0.2ms) rollback transaction
874
+  (0.1ms) begin transaction
875
+ ----------------------------------------------------
876
+ ControllersTest: test_index_should_have_html_imports
877
+ ----------------------------------------------------
878
+ Processing by DummyController#index as HTML
879
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
880
+ Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms)
881
+  (0.1ms) rollback transaction
882
+  (0.0ms) begin transaction
883
+ --------------------------------------
884
+ ControllersTest: test_should_get_index
885
+ --------------------------------------
886
+ Processing by DummyController#index as HTML
887
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
888
+  (0.1ms) rollback transaction
889
+  (0.1ms) begin transaction
890
+ ---------------------
891
+ EmceeTest: test_truth
892
+ ---------------------
893
+  (0.0ms) rollback transaction
894
+  (0.0ms) begin transaction
895
+ -------------------------------------
896
+ Helpers: test_html_import_should_work
897
+ -------------------------------------
898
+  (0.0ms) rollback transaction
899
+  (0.2ms) begin transaction
900
+ ------------------------------------------------------------
901
+ CompressorsTest: test_compressor_should_remove_html_comments
902
+ ------------------------------------------------------------
903
+  (0.2ms) rollback transaction
904
+  (0.1ms) begin transaction
905
+ ----------------------------------------------------
906
+ ControllersTest: test_index_should_have_html_imports
907
+ ----------------------------------------------------
908
+ Processing by DummyController#index as HTML
909
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
910
+ Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms)
911
+  (0.1ms) rollback transaction
912
+  (0.0ms) begin transaction
913
+ --------------------------------------
914
+ ControllersTest: test_should_get_index
915
+ --------------------------------------
916
+ Processing by DummyController#index as HTML
917
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
918
+  (0.1ms) rollback transaction
919
+  (0.1ms) begin transaction
920
+ ---------------------
921
+ EmceeTest: test_truth
922
+ ---------------------
923
+  (0.1ms) rollback transaction
924
+  (0.0ms) begin transaction
925
+ -------------------------------------
926
+ Helpers: test_html_import_should_work
927
+ -------------------------------------
928
+  (0.0ms) rollback transaction
929
+  (0.3ms) begin transaction
930
+ ------------------------------------------------------------
931
+ CompressorsTest: test_compressor_should_remove_html_comments
932
+ ------------------------------------------------------------
933
+  (0.1ms) rollback transaction
934
+  (0.0ms) begin transaction
935
+ ----------------------------------------------------
936
+ ControllersTest: test_index_should_have_html_imports
937
+ ----------------------------------------------------
938
+ Processing by DummyController#index as HTML
939
+ Rendered dummy/index.html.erb within layouts/application (1.2ms)
940
+ Completed 200 OK in 19ms (Views: 19.1ms | ActiveRecord: 0.0ms)
941
+  (0.1ms) rollback transaction
942
+  (0.1ms) begin transaction
943
+ --------------------------------------
944
+ ControllersTest: test_should_get_index
945
+ --------------------------------------
946
+ Processing by DummyController#index as HTML
947
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
948
+  (0.1ms) rollback transaction
949
+  (0.1ms) begin transaction
950
+ ---------------------
951
+ EmceeTest: test_truth
952
+ ---------------------
953
+  (0.0ms) rollback transaction
954
+  (0.0ms) begin transaction
955
+ -------------------------------------
956
+ Helpers: test_html_import_should_work
957
+ -------------------------------------
958
+  (0.0ms) rollback transaction
959
+  (0.2ms) begin transaction
960
+ ------------------------------------------------------------
961
+ CompressorsTest: test_compressor_should_remove_html_comments
962
+ ------------------------------------------------------------
963
+  (0.2ms) rollback transaction
964
+  (0.1ms) begin transaction
965
+ ----------------------------------------------------
966
+ ControllersTest: test_index_should_have_html_imports
967
+ ----------------------------------------------------
968
+ Processing by DummyController#index as HTML
969
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
970
+ Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms)
971
+  (0.1ms) rollback transaction
972
+  (0.0ms) begin transaction
973
+ --------------------------------------
974
+ ControllersTest: test_should_get_index
975
+ --------------------------------------
976
+ Processing by DummyController#index as HTML
977
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
978
+  (0.1ms) rollback transaction
979
+  (0.1ms) begin transaction
980
+ ---------------------
981
+ EmceeTest: test_truth
982
+ ---------------------
983
+  (0.0ms) rollback transaction
984
+  (0.0ms) begin transaction
985
+ -------------------------------------
986
+ Helpers: test_html_import_should_work
987
+ -------------------------------------
988
+  (0.0ms) rollback transaction
989
+  (0.2ms) begin transaction
990
+ ------------------------------------------------------------
991
+ CompressorsTest: test_compressor_should_remove_html_comments
992
+ ------------------------------------------------------------
993
+  (0.1ms) rollback transaction
994
+  (0.0ms) begin transaction
995
+ ----------------------------------------------------
996
+ ControllersTest: test_index_should_have_html_imports
997
+ ----------------------------------------------------
998
+ Processing by DummyController#index as HTML
999
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
1000
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
1001
+  (0.1ms) rollback transaction
1002
+  (0.1ms) begin transaction
1003
+ --------------------------------------
1004
+ ControllersTest: test_should_get_index
1005
+ --------------------------------------
1006
+ Processing by DummyController#index as HTML
1007
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1008
+  (0.1ms) rollback transaction
1009
+  (0.1ms) begin transaction
1010
+ ---------------------
1011
+ EmceeTest: test_truth
1012
+ ---------------------
1013
+  (0.0ms) rollback transaction
1014
+  (0.0ms) begin transaction
1015
+ -------------------------------------
1016
+ Helpers: test_html_import_should_work
1017
+ -------------------------------------
1018
+  (0.0ms) rollback transaction
1019
+  (0.2ms) begin transaction
1020
+ ------------------------------------------------------------
1021
+ CompressorsTest: test_compressor_should_remove_html_comments
1022
+ ------------------------------------------------------------
1023
+  (0.0ms) rollback transaction
1024
+  (0.0ms) begin transaction
1025
+ ----------------------------------------------------
1026
+ ControllersTest: test_index_should_have_html_imports
1027
+ ----------------------------------------------------
1028
+ Processing by DummyController#index as HTML
1029
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1030
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
1031
+  (0.1ms) rollback transaction
1032
+  (0.1ms) begin transaction
1033
+ --------------------------------------
1034
+ ControllersTest: test_should_get_index
1035
+ --------------------------------------
1036
+ Processing by DummyController#index as HTML
1037
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1038
+  (0.1ms) rollback transaction
1039
+  (0.1ms) begin transaction
1040
+ ---------------------
1041
+ EmceeTest: test_truth
1042
+ ---------------------
1043
+  (0.1ms) rollback transaction
1044
+  (0.1ms) begin transaction
1045
+ -------------------------------------
1046
+ Helpers: test_html_import_should_work
1047
+ -------------------------------------
1048
+  (0.0ms) rollback transaction
1049
+  (0.2ms) begin transaction
1050
+ ------------------------------------------------------------
1051
+ CompressorsTest: test_compressor_should_remove_html_comments
1052
+ ------------------------------------------------------------
1053
+  (0.0ms) rollback transaction
1054
+  (0.0ms) begin transaction
1055
+ ----------------------------------------------------
1056
+ ControllersTest: test_index_should_have_html_imports
1057
+ ----------------------------------------------------
1058
+ Processing by DummyController#index as HTML
1059
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1060
+ Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
1061
+  (0.1ms) rollback transaction
1062
+  (0.0ms) begin transaction
1063
+ --------------------------------------
1064
+ ControllersTest: test_should_get_index
1065
+ --------------------------------------
1066
+ Processing by DummyController#index as HTML
1067
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1068
+  (0.1ms) rollback transaction
1069
+  (0.1ms) begin transaction
1070
+ ---------------------
1071
+ EmceeTest: test_truth
1072
+ ---------------------
1073
+  (0.0ms) rollback transaction
1074
+  (0.0ms) begin transaction
1075
+ -------------------------------------
1076
+ Helpers: test_html_import_should_work
1077
+ -------------------------------------
1078
+  (0.0ms) rollback transaction
1079
+  (0.2ms) begin transaction
1080
+ ------------------------------------------------------------
1081
+ CompressorsTest: test_compressor_should_remove_html_comments
1082
+ ------------------------------------------------------------
1083
+  (0.0ms) rollback transaction
1084
+  (0.1ms) begin transaction
1085
+ -----------------------------------------------------------------------------
1086
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1087
+ -----------------------------------------------------------------------------
1088
+  (0.2ms) rollback transaction
1089
+  (0.1ms) begin transaction
1090
+ ----------------------------------------------------
1091
+ ControllersTest: test_index_should_have_html_imports
1092
+ ----------------------------------------------------
1093
+ Processing by DummyController#index as HTML
1094
+ Rendered dummy/index.html.erb within layouts/application (1.3ms)
1095
+ Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
1096
+  (0.1ms) rollback transaction
1097
+  (0.1ms) begin transaction
1098
+ --------------------------------------
1099
+ ControllersTest: test_should_get_index
1100
+ --------------------------------------
1101
+ Processing by DummyController#index as HTML
1102
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1103
+  (0.1ms) rollback transaction
1104
+  (0.0ms) begin transaction
1105
+ ---------------------
1106
+ EmceeTest: test_truth
1107
+ ---------------------
1108
+  (0.1ms) rollback transaction
1109
+  (0.0ms) begin transaction
1110
+ -------------------------------------
1111
+ Helpers: test_html_import_should_work
1112
+ -------------------------------------
1113
+  (0.0ms) rollback transaction
1114
+  (0.2ms) begin transaction
1115
+ ------------------------------------------------------------
1116
+ CompressorsTest: test_compressor_should_remove_html_comments
1117
+ ------------------------------------------------------------
1118
+  (0.0ms) rollback transaction
1119
+  (0.0ms) begin transaction
1120
+ -----------------------------------------------------------------------------
1121
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1122
+ -----------------------------------------------------------------------------
1123
+  (0.0ms) rollback transaction
1124
+  (0.0ms) begin transaction
1125
+ ----------------------------------------------------
1126
+ ControllersTest: test_index_should_have_html_imports
1127
+ ----------------------------------------------------
1128
+ Processing by DummyController#index as HTML
1129
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1130
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
1131
+  (0.1ms) rollback transaction
1132
+  (0.0ms) begin transaction
1133
+ --------------------------------------
1134
+ ControllersTest: test_should_get_index
1135
+ --------------------------------------
1136
+ Processing by DummyController#index as HTML
1137
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1138
+  (0.1ms) rollback transaction
1139
+  (0.0ms) begin transaction
1140
+ ---------------------
1141
+ EmceeTest: test_truth
1142
+ ---------------------
1143
+  (0.0ms) rollback transaction
1144
+  (0.0ms) begin transaction
1145
+ -------------------------------------
1146
+ Helpers: test_html_import_should_work
1147
+ -------------------------------------
1148
+  (0.0ms) rollback transaction
1149
+  (0.2ms) begin transaction
1150
+ ------------------------------------------------------------
1151
+ CompressorsTest: test_compressor_should_remove_html_comments
1152
+ ------------------------------------------------------------
1153
+  (0.0ms) rollback transaction
1154
+  (0.1ms) begin transaction
1155
+ -----------------------------------------------------------------------------
1156
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1157
+ -----------------------------------------------------------------------------
1158
+  (0.2ms) rollback transaction
1159
+  (0.1ms) begin transaction
1160
+ ----------------------------------------------------
1161
+ ControllersTest: test_index_should_have_html_imports
1162
+ ----------------------------------------------------
1163
+ Processing by DummyController#index as HTML
1164
+ Rendered dummy/index.html.erb within layouts/application (1.7ms)
1165
+ Completed 200 OK in 26ms (Views: 24.8ms | ActiveRecord: 0.0ms)
1166
+  (0.1ms) rollback transaction
1167
+  (0.1ms) begin transaction
1168
+ --------------------------------------
1169
+ ControllersTest: test_should_get_index
1170
+ --------------------------------------
1171
+ Processing by DummyController#index as HTML
1172
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1173
+  (0.1ms) rollback transaction
1174
+  (0.0ms) begin transaction
1175
+ ---------------------
1176
+ EmceeTest: test_truth
1177
+ ---------------------
1178
+  (0.0ms) rollback transaction
1179
+  (0.0ms) begin transaction
1180
+ -------------------------------------
1181
+ Helpers: test_html_import_should_work
1182
+ -------------------------------------
1183
+  (0.1ms) rollback transaction
1184
+  (0.2ms) begin transaction
1185
+ ------------------------------------------------------------
1186
+ CompressorsTest: test_compressor_should_remove_html_comments
1187
+ ------------------------------------------------------------
1188
+  (0.1ms) rollback transaction
1189
+  (0.0ms) begin transaction
1190
+ -----------------------------------------------------------------------------
1191
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1192
+ -----------------------------------------------------------------------------
1193
+  (0.0ms) rollback transaction
1194
+  (0.0ms) begin transaction
1195
+ ----------------------------------------------------
1196
+ ControllersTest: test_index_should_have_html_imports
1197
+ ----------------------------------------------------
1198
+ Processing by DummyController#index as HTML
1199
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1200
+ Completed 200 OK in 16ms (Views: 15.7ms | ActiveRecord: 0.0ms)
1201
+  (0.1ms) rollback transaction
1202
+  (0.1ms) begin transaction
1203
+ --------------------------------------
1204
+ ControllersTest: test_should_get_index
1205
+ --------------------------------------
1206
+ Processing by DummyController#index as HTML
1207
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1208
+  (0.1ms) rollback transaction
1209
+  (0.0ms) begin transaction
1210
+ ---------------------
1211
+ EmceeTest: test_truth
1212
+ ---------------------
1213
+  (0.0ms) rollback transaction
1214
+  (0.0ms) begin transaction
1215
+ -------------------------------------
1216
+ Helpers: test_html_import_should_work
1217
+ -------------------------------------
1218
+  (0.0ms) rollback transaction
1219
+  (0.2ms) begin transaction
1220
+ ------------------------------------------------------------
1221
+ CompressorsTest: test_compressor_should_remove_html_comments
1222
+ ------------------------------------------------------------
1223
+  (0.1ms) rollback transaction
1224
+  (0.1ms) begin transaction
1225
+ -----------------------------------------------------------------------------
1226
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1227
+ -----------------------------------------------------------------------------
1228
+  (0.0ms) rollback transaction
1229
+  (0.0ms) begin transaction
1230
+ ----------------------------------------------------
1231
+ ControllersTest: test_index_should_have_html_imports
1232
+ ----------------------------------------------------
1233
+ Processing by DummyController#index as HTML
1234
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
1235
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
1236
+  (0.1ms) rollback transaction
1237
+  (0.1ms) begin transaction
1238
+ --------------------------------------
1239
+ ControllersTest: test_should_get_index
1240
+ --------------------------------------
1241
+ Processing by DummyController#index as HTML
1242
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1243
+  (0.1ms) rollback transaction
1244
+  (0.1ms) begin transaction
1245
+ ---------------------
1246
+ EmceeTest: test_truth
1247
+ ---------------------
1248
+  (0.0ms) rollback transaction
1249
+  (0.0ms) begin transaction
1250
+ -------------------------------------
1251
+ Helpers: test_html_import_should_work
1252
+ -------------------------------------
1253
+  (0.0ms) rollback transaction
1254
+  (0.2ms) begin transaction
1255
+ ------------------------------------------------------------
1256
+ CompressorsTest: test_compressor_should_remove_html_comments
1257
+ ------------------------------------------------------------
1258
+  (0.0ms) rollback transaction
1259
+  (0.0ms) begin transaction
1260
+ -----------------------------------------------------------------------------
1261
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1262
+ -----------------------------------------------------------------------------
1263
+  (0.1ms) rollback transaction
1264
+  (0.0ms) begin transaction
1265
+ ------------------------------------------------------------------------------
1266
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
1267
+ ------------------------------------------------------------------------------
1268
+  (0.0ms) rollback transaction
1269
+  (0.0ms) begin transaction
1270
+ ----------------------------------------------------
1271
+ ControllersTest: test_index_should_have_html_imports
1272
+ ----------------------------------------------------
1273
+ Processing by DummyController#index as HTML
1274
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1275
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
1276
+  (0.1ms) rollback transaction
1277
+  (0.1ms) begin transaction
1278
+ --------------------------------------
1279
+ ControllersTest: test_should_get_index
1280
+ --------------------------------------
1281
+ Processing by DummyController#index as HTML
1282
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1283
+  (0.1ms) rollback transaction
1284
+  (0.0ms) begin transaction
1285
+ ---------------------
1286
+ EmceeTest: test_truth
1287
+ ---------------------
1288
+  (0.0ms) rollback transaction
1289
+  (0.0ms) begin transaction
1290
+ -------------------------------------
1291
+ Helpers: test_html_import_should_work
1292
+ -------------------------------------
1293
+  (0.1ms) rollback transaction
1294
+  (0.2ms) begin transaction
1295
+ ------------------------------------------------------------
1296
+ CompressorsTest: test_compressor_should_remove_html_comments
1297
+ ------------------------------------------------------------
1298
+  (0.1ms) rollback transaction
1299
+  (0.1ms) begin transaction
1300
+ -----------------------------------------------------------------------------
1301
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1302
+ -----------------------------------------------------------------------------
1303
+  (0.0ms) rollback transaction
1304
+  (0.1ms) begin transaction
1305
+ ------------------------------------------------------------------------------
1306
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
1307
+ ------------------------------------------------------------------------------
1308
+  (0.1ms) rollback transaction
1309
+  (0.0ms) begin transaction
1310
+ ----------------------------------------------------
1311
+ ControllersTest: test_index_should_have_html_imports
1312
+ ----------------------------------------------------
1313
+ Processing by DummyController#index as HTML
1314
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
1315
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
1316
+  (0.1ms) rollback transaction
1317
+  (0.1ms) begin transaction
1318
+ --------------------------------------
1319
+ ControllersTest: test_should_get_index
1320
+ --------------------------------------
1321
+ Processing by DummyController#index as HTML
1322
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1323
+  (0.1ms) rollback transaction
1324
+  (0.1ms) begin transaction
1325
+ ---------------------
1326
+ EmceeTest: test_truth
1327
+ ---------------------
1328
+  (0.0ms) rollback transaction
1329
+  (0.0ms) begin transaction
1330
+ -------------------------------------
1331
+ Helpers: test_html_import_should_work
1332
+ -------------------------------------
1333
+  (0.0ms) rollback transaction
1334
+  (0.2ms) begin transaction
1335
+ ------------------------------------------------------------
1336
+ CompressorsTest: test_compressor_should_remove_html_comments
1337
+ ------------------------------------------------------------
1338
+  (0.0ms) rollback transaction
1339
+  (0.0ms) begin transaction
1340
+ ----------------------------------------------------
1341
+ ControllersTest: test_index_should_have_html_imports
1342
+ ----------------------------------------------------
1343
+ Processing by DummyController#index as HTML
1344
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1345
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
1346
+  (0.1ms) rollback transaction
1347
+  (0.1ms) begin transaction
1348
+ --------------------------------------
1349
+ ControllersTest: test_should_get_index
1350
+ --------------------------------------
1351
+ Processing by DummyController#index as HTML
1352
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1353
+  (0.1ms) rollback transaction
1354
+  (0.1ms) begin transaction
1355
+ ---------------------
1356
+ EmceeTest: test_truth
1357
+ ---------------------
1358
+  (0.0ms) rollback transaction
1359
+  (0.0ms) begin transaction
1360
+ -------------------------------------
1361
+ Helpers: test_html_import_should_work
1362
+ -------------------------------------
1363
+  (0.0ms) rollback transaction
1364
+  (0.2ms) begin transaction
1365
+ ------------------------------------------------------------
1366
+ CompressorsTest: test_compressor_should_remove_html_comments
1367
+ ------------------------------------------------------------
1368
+  (0.1ms) rollback transaction
1369
+  (0.1ms) begin transaction
1370
+ ----------------------------------------------------
1371
+ ControllersTest: test_index_should_have_html_imports
1372
+ ----------------------------------------------------
1373
+ Processing by DummyController#index as HTML
1374
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
1375
+ Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms)
1376
+  (0.1ms) rollback transaction
1377
+  (0.0ms) begin transaction
1378
+ --------------------------------------
1379
+ ControllersTest: test_should_get_index
1380
+ --------------------------------------
1381
+ Processing by DummyController#index as HTML
1382
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1383
+  (0.1ms) rollback transaction
1384
+  (0.0ms) begin transaction
1385
+ ---------------------
1386
+ EmceeTest: test_truth
1387
+ ---------------------
1388
+  (0.1ms) rollback transaction
1389
+  (0.1ms) begin transaction
1390
+ -------------------------------------
1391
+ Helpers: test_html_import_should_work
1392
+ -------------------------------------
1393
+  (0.0ms) rollback transaction
1394
+  (0.2ms) begin transaction
1395
+ ------------------------------------------------------------
1396
+ CompressorsTest: test_compressor_should_remove_html_comments
1397
+ ------------------------------------------------------------
1398
+  (0.2ms) rollback transaction
1399
+  (0.1ms) begin transaction
1400
+ ----------------------------------------------------
1401
+ ControllersTest: test_index_should_have_html_imports
1402
+ ----------------------------------------------------
1403
+ Processing by DummyController#index as HTML
1404
+ Rendered dummy/index.html.erb within layouts/application (1.2ms)
1405
+ Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms)
1406
+  (0.1ms) rollback transaction
1407
+  (0.1ms) begin transaction
1408
+ --------------------------------------
1409
+ ControllersTest: test_should_get_index
1410
+ --------------------------------------
1411
+ Processing by DummyController#index as HTML
1412
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1413
+  (0.1ms) rollback transaction
1414
+  (0.0ms) begin transaction
1415
+ ---------------------
1416
+ EmceeTest: test_truth
1417
+ ---------------------
1418
+  (0.0ms) rollback transaction
1419
+  (0.0ms) begin transaction
1420
+ -------------------------------------
1421
+ Helpers: test_html_import_should_work
1422
+ -------------------------------------
1423
+  (0.0ms) rollback transaction
1424
+  (0.3ms) begin transaction
1425
+ ------------------------------------------------------------
1426
+ CompressorsTest: test_compressor_should_remove_html_comments
1427
+ ------------------------------------------------------------
1428
+  (0.2ms) rollback transaction
1429
+  (0.2ms) begin transaction
1430
+ ----------------------------------------------------
1431
+ ControllersTest: test_index_should_have_html_imports
1432
+ ----------------------------------------------------
1433
+ Processing by DummyController#index as HTML
1434
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
1435
+ Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.0ms)
1436
+  (0.1ms) rollback transaction
1437
+  (0.0ms) begin transaction
1438
+ --------------------------------------
1439
+ ControllersTest: test_should_get_index
1440
+ --------------------------------------
1441
+ Processing by DummyController#index as HTML
1442
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1443
+  (0.1ms) rollback transaction
1444
+  (0.1ms) begin transaction
1445
+ ---------------------
1446
+ EmceeTest: test_truth
1447
+ ---------------------
1448
+  (0.1ms) rollback transaction
1449
+  (0.0ms) begin transaction
1450
+ -------------------------------------
1451
+ Helpers: test_html_import_should_work
1452
+ -------------------------------------
1453
+  (0.0ms) rollback transaction
1454
+  (0.3ms) begin transaction
1455
+ ------------------------------------------------------------
1456
+ CompressorsTest: test_compressor_should_remove_html_comments
1457
+ ------------------------------------------------------------
1458
+  (0.0ms) rollback transaction
1459
+  (0.0ms) begin transaction
1460
+ ----------------------------------------------------
1461
+ ControllersTest: test_index_should_have_html_imports
1462
+ ----------------------------------------------------
1463
+ Processing by DummyController#index as HTML
1464
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1465
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
1466
+  (0.1ms) rollback transaction
1467
+  (0.0ms) begin transaction
1468
+ --------------------------------------
1469
+ ControllersTest: test_should_get_index
1470
+ --------------------------------------
1471
+ Processing by DummyController#index as HTML
1472
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1473
+  (0.1ms) rollback transaction
1474
+  (0.0ms) begin transaction
1475
+ ---------------------
1476
+ EmceeTest: test_truth
1477
+ ---------------------
1478
+  (0.0ms) rollback transaction
1479
+  (0.0ms) begin transaction
1480
+ -------------------------------------
1481
+ Helpers: test_html_import_should_work
1482
+ -------------------------------------
1483
+  (0.1ms) rollback transaction
1484
+  (0.2ms) begin transaction
1485
+ ------------------------------------------------------------
1486
+ CompressorsTest: test_compressor_should_remove_html_comments
1487
+ ------------------------------------------------------------
1488
+  (0.0ms) rollback transaction
1489
+  (0.0ms) begin transaction
1490
+ ----------------------------------------------------
1491
+ ControllersTest: test_index_should_have_html_imports
1492
+ ----------------------------------------------------
1493
+ Processing by DummyController#index as HTML
1494
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1495
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
1496
+  (0.1ms) rollback transaction
1497
+  (0.0ms) begin transaction
1498
+ --------------------------------------
1499
+ ControllersTest: test_should_get_index
1500
+ --------------------------------------
1501
+ Processing by DummyController#index as HTML
1502
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1503
+  (0.1ms) rollback transaction
1504
+  (0.0ms) begin transaction
1505
+ ---------------------
1506
+ EmceeTest: test_truth
1507
+ ---------------------
1508
+  (0.0ms) rollback transaction
1509
+  (0.0ms) begin transaction
1510
+ -------------------------------------
1511
+ Helpers: test_html_import_should_work
1512
+ -------------------------------------
1513
+  (0.1ms) rollback transaction
1514
+  (0.2ms) begin transaction
1515
+ ------------------------------------------------------------
1516
+ CompressorsTest: test_compressor_should_remove_html_comments
1517
+ ------------------------------------------------------------
1518
+  (0.0ms) rollback transaction
1519
+  (0.0ms) begin transaction
1520
+ ----------------------------------------------------
1521
+ ControllersTest: test_index_should_have_html_imports
1522
+ ----------------------------------------------------
1523
+ Processing by DummyController#index as HTML
1524
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
1525
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
1526
+  (0.1ms) rollback transaction
1527
+  (0.1ms) begin transaction
1528
+ --------------------------------------
1529
+ ControllersTest: test_should_get_index
1530
+ --------------------------------------
1531
+ Processing by DummyController#index as HTML
1532
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1533
+  (0.1ms) rollback transaction
1534
+  (0.0ms) begin transaction
1535
+ ---------------------
1536
+ EmceeTest: test_truth
1537
+ ---------------------
1538
+  (0.1ms) rollback transaction
1539
+  (0.1ms) begin transaction
1540
+ -------------------------------------
1541
+ Helpers: test_html_import_should_work
1542
+ -------------------------------------
1543
+  (0.0ms) rollback transaction
1544
+  (0.2ms) begin transaction
1545
+ ------------------------------------------------------------
1546
+ CompressorsTest: test_compressor_should_remove_html_comments
1547
+ ------------------------------------------------------------
1548
+  (0.2ms) rollback transaction
1549
+  (0.1ms) begin transaction
1550
+ ----------------------------------------------------
1551
+ ControllersTest: test_index_should_have_html_imports
1552
+ ----------------------------------------------------
1553
+ Processing by DummyController#index as HTML
1554
+ Rendered dummy/index.html.erb within layouts/application (1.2ms)
1555
+ Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.0ms)
1556
+  (0.1ms) rollback transaction
1557
+  (0.1ms) begin transaction
1558
+ --------------------------------------
1559
+ ControllersTest: test_should_get_index
1560
+ --------------------------------------
1561
+ Processing by DummyController#index as HTML
1562
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1563
+  (0.1ms) rollback transaction
1564
+  (0.0ms) begin transaction
1565
+ ---------------------
1566
+ EmceeTest: test_truth
1567
+ ---------------------
1568
+  (0.0ms) rollback transaction
1569
+  (0.0ms) begin transaction
1570
+ -------------------------------------
1571
+ Helpers: test_html_import_should_work
1572
+ -------------------------------------
1573
+  (0.1ms) rollback transaction
1574
+  (0.2ms) begin transaction
1575
+ ------------------------------------------------------------
1576
+ CompressorsTest: test_compressor_should_remove_html_comments
1577
+ ------------------------------------------------------------
1578
+  (0.1ms) rollback transaction
1579
+  (0.0ms) begin transaction
1580
+ ----------------------------------------------------
1581
+ ControllersTest: test_index_should_have_html_imports
1582
+ ----------------------------------------------------
1583
+ Processing by DummyController#index as HTML
1584
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1585
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
1586
+  (0.1ms) rollback transaction
1587
+  (0.1ms) begin transaction
1588
+ --------------------------------------
1589
+ ControllersTest: test_should_get_index
1590
+ --------------------------------------
1591
+ Processing by DummyController#index as HTML
1592
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1593
+  (0.1ms) rollback transaction
1594
+  (0.1ms) begin transaction
1595
+ ---------------------
1596
+ EmceeTest: test_truth
1597
+ ---------------------
1598
+  (0.0ms) rollback transaction
1599
+  (0.0ms) begin transaction
1600
+ -------------------------------------
1601
+ Helpers: test_html_import_should_work
1602
+ -------------------------------------
1603
+  (0.0ms) rollback transaction
1604
+  (0.2ms) begin transaction
1605
+ ------------------------------------------------------------
1606
+ CompressorsTest: test_compressor_should_remove_html_comments
1607
+ ------------------------------------------------------------
1608
+  (0.0ms) rollback transaction
1609
+  (0.0ms) begin transaction
1610
+ ----------------------------------------------------
1611
+ ControllersTest: test_index_should_have_html_imports
1612
+ ----------------------------------------------------
1613
+ Processing by DummyController#index as HTML
1614
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1615
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
1616
+  (0.1ms) rollback transaction
1617
+  (0.0ms) begin transaction
1618
+ --------------------------------------
1619
+ ControllersTest: test_should_get_index
1620
+ --------------------------------------
1621
+ Processing by DummyController#index as HTML
1622
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1623
+  (0.1ms) rollback transaction
1624
+  (0.1ms) begin transaction
1625
+ ---------------------
1626
+ EmceeTest: test_truth
1627
+ ---------------------
1628
+  (0.0ms) rollback transaction
1629
+  (0.0ms) begin transaction
1630
+ -------------------------------------
1631
+ Helpers: test_html_import_should_work
1632
+ -------------------------------------
1633
+  (0.0ms) rollback transaction
1634
+  (0.2ms) begin transaction
1635
+ ------------------------------------------------------------
1636
+ CompressorsTest: test_compressor_should_remove_html_comments
1637
+ ------------------------------------------------------------
1638
+  (0.1ms) rollback transaction
1639
+  (0.0ms) begin transaction
1640
+ ----------------------------------------------------
1641
+ ControllersTest: test_index_should_have_html_imports
1642
+ ----------------------------------------------------
1643
+ Processing by DummyController#index as HTML
1644
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1645
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
1646
+  (0.1ms) rollback transaction
1647
+  (0.1ms) begin transaction
1648
+ --------------------------------------
1649
+ ControllersTest: test_should_get_index
1650
+ --------------------------------------
1651
+ Processing by DummyController#index as HTML
1652
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1653
+  (0.1ms) rollback transaction
1654
+  (0.0ms) begin transaction
1655
+ ---------------------
1656
+ EmceeTest: test_truth
1657
+ ---------------------
1658
+  (0.0ms) rollback transaction
1659
+  (0.0ms) begin transaction
1660
+ -------------------------------------
1661
+ Helpers: test_html_import_should_work
1662
+ -------------------------------------
1663
+  (0.1ms) rollback transaction
1664
+  (0.2ms) begin transaction
1665
+ ------------------------------------------------------------
1666
+ CompressorsTest: test_compressor_should_remove_html_comments
1667
+ ------------------------------------------------------------
1668
+  (0.0ms) rollback transaction
1669
+  (0.1ms) begin transaction
1670
+ -----------------------------------------------------------------------------
1671
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1672
+ -----------------------------------------------------------------------------
1673
+  (0.0ms) rollback transaction
1674
+  (0.0ms) begin transaction
1675
+ ----------------------------------------------------
1676
+ ControllersTest: test_index_should_have_html_imports
1677
+ ----------------------------------------------------
1678
+ Processing by DummyController#index as HTML
1679
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1680
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
1681
+  (0.1ms) rollback transaction
1682
+  (0.1ms) begin transaction
1683
+ --------------------------------------
1684
+ ControllersTest: test_should_get_index
1685
+ --------------------------------------
1686
+ Processing by DummyController#index as HTML
1687
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1688
+  (0.1ms) rollback transaction
1689
+  (0.1ms) begin transaction
1690
+ ---------------------
1691
+ EmceeTest: test_truth
1692
+ ---------------------
1693
+  (0.0ms) rollback transaction
1694
+  (0.1ms) begin transaction
1695
+ -------------------------------------
1696
+ Helpers: test_html_import_should_work
1697
+ -------------------------------------
1698
+  (0.1ms) rollback transaction
1699
+  (0.2ms) begin transaction
1700
+ ------------------------------------------------------------
1701
+ CompressorsTest: test_compressor_should_remove_html_comments
1702
+ ------------------------------------------------------------
1703
+  (0.0ms) rollback transaction
1704
+  (0.0ms) begin transaction
1705
+ -----------------------------------------------------------------------------
1706
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1707
+ -----------------------------------------------------------------------------
1708
+  (0.3ms) rollback transaction
1709
+  (0.1ms) begin transaction
1710
+ ----------------------------------------------------
1711
+ ControllersTest: test_index_should_have_html_imports
1712
+ ----------------------------------------------------
1713
+ Processing by DummyController#index as HTML
1714
+ Rendered dummy/index.html.erb within layouts/application (1.3ms)
1715
+ Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms)
1716
+  (0.1ms) rollback transaction
1717
+  (0.1ms) begin transaction
1718
+ --------------------------------------
1719
+ ControllersTest: test_should_get_index
1720
+ --------------------------------------
1721
+ Processing by DummyController#index as HTML
1722
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1723
+  (0.1ms) rollback transaction
1724
+  (0.0ms) begin transaction
1725
+ ---------------------
1726
+ EmceeTest: test_truth
1727
+ ---------------------
1728
+  (0.0ms) rollback transaction
1729
+  (0.0ms) begin transaction
1730
+ -------------------------------------
1731
+ Helpers: test_html_import_should_work
1732
+ -------------------------------------
1733
+  (0.0ms) rollback transaction
1734
+  (0.2ms) begin transaction
1735
+ ------------------------------------------------------------
1736
+ CompressorsTest: test_compressor_should_remove_html_comments
1737
+ ------------------------------------------------------------
1738
+  (0.0ms) rollback transaction
1739
+  (0.0ms) begin transaction
1740
+ -----------------------------------------------------------------------------
1741
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1742
+ -----------------------------------------------------------------------------
1743
+  (0.0ms) rollback transaction
1744
+  (0.0ms) begin transaction
1745
+ ----------------------------------------------------
1746
+ ControllersTest: test_index_should_have_html_imports
1747
+ ----------------------------------------------------
1748
+ Processing by DummyController#index as HTML
1749
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1750
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
1751
+  (0.1ms) rollback transaction
1752
+  (0.0ms) begin transaction
1753
+ --------------------------------------
1754
+ ControllersTest: test_should_get_index
1755
+ --------------------------------------
1756
+ Processing by DummyController#index as HTML
1757
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1758
+  (0.1ms) rollback transaction
1759
+  (0.0ms) begin transaction
1760
+ ---------------------
1761
+ EmceeTest: test_truth
1762
+ ---------------------
1763
+  (0.0ms) rollback transaction
1764
+  (0.0ms) begin transaction
1765
+ -------------------------------------
1766
+ Helpers: test_html_import_should_work
1767
+ -------------------------------------
1768
+  (0.0ms) rollback transaction
1769
+  (0.2ms) begin transaction
1770
+ ------------------------------------------------------------
1771
+ CompressorsTest: test_compressor_should_remove_html_comments
1772
+ ------------------------------------------------------------
1773
+  (0.0ms) rollback transaction
1774
+  (0.0ms) begin transaction
1775
+ -----------------------------------------------------------------------------
1776
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1777
+ -----------------------------------------------------------------------------
1778
+  (0.0ms) rollback transaction
1779
+  (0.0ms) begin transaction
1780
+ ----------------------------------------------------
1781
+ ControllersTest: test_index_should_have_html_imports
1782
+ ----------------------------------------------------
1783
+ Processing by DummyController#index as HTML
1784
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
1785
+ Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
1786
+  (0.1ms) rollback transaction
1787
+  (0.0ms) begin transaction
1788
+ --------------------------------------
1789
+ ControllersTest: test_should_get_index
1790
+ --------------------------------------
1791
+ Processing by DummyController#index as HTML
1792
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1793
+  (0.1ms) rollback transaction
1794
+  (0.1ms) begin transaction
1795
+ ---------------------
1796
+ EmceeTest: test_truth
1797
+ ---------------------
1798
+  (0.0ms) rollback transaction
1799
+  (0.0ms) begin transaction
1800
+ -------------------------------------
1801
+ Helpers: test_html_import_should_work
1802
+ -------------------------------------
1803
+  (0.0ms) rollback transaction
1804
+  (0.2ms) begin transaction
1805
+ ------------------------------------------------------------
1806
+ CompressorsTest: test_compressor_should_remove_html_comments
1807
+ ------------------------------------------------------------
1808
+  (0.1ms) rollback transaction
1809
+  (0.1ms) begin transaction
1810
+ -----------------------------------------------------------------------------
1811
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1812
+ -----------------------------------------------------------------------------
1813
+  (0.0ms) rollback transaction
1814
+  (0.0ms) begin transaction
1815
+ ----------------------------------------------------
1816
+ ControllersTest: test_index_should_have_html_imports
1817
+ ----------------------------------------------------
1818
+ Processing by DummyController#index as HTML
1819
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1820
+ Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms)
1821
+  (0.1ms) rollback transaction
1822
+  (0.1ms) begin transaction
1823
+ --------------------------------------
1824
+ ControllersTest: test_should_get_index
1825
+ --------------------------------------
1826
+ Processing by DummyController#index as HTML
1827
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1828
+  (0.1ms) rollback transaction
1829
+  (0.1ms) begin transaction
1830
+ ---------------------
1831
+ EmceeTest: test_truth
1832
+ ---------------------
1833
+  (0.0ms) rollback transaction
1834
+  (0.1ms) begin transaction
1835
+ -------------------------------------
1836
+ Helpers: test_html_import_should_work
1837
+ -------------------------------------
1838
+  (0.0ms) rollback transaction
1839
+  (0.2ms) begin transaction
1840
+ ------------------------------------------------------------
1841
+ CompressorsTest: test_compressor_should_remove_html_comments
1842
+ ------------------------------------------------------------
1843
+  (0.0ms) rollback transaction
1844
+  (0.1ms) begin transaction
1845
+ -----------------------------------------------------------------------------
1846
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1847
+ -----------------------------------------------------------------------------
1848
+  (0.1ms) rollback transaction
1849
+  (0.1ms) begin transaction
1850
+ ------------------------------------------------------------------------------
1851
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
1852
+ ------------------------------------------------------------------------------
1853
+  (0.0ms) rollback transaction
1854
+  (0.0ms) begin transaction
1855
+ ----------------------------------------------------
1856
+ ControllersTest: test_index_should_have_html_imports
1857
+ ----------------------------------------------------
1858
+ Processing by DummyController#index as HTML
1859
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
1860
+ Completed 200 OK in 16ms (Views: 16.2ms | ActiveRecord: 0.0ms)
1861
+  (0.1ms) rollback transaction
1862
+  (0.1ms) begin transaction
1863
+ --------------------------------------
1864
+ ControllersTest: test_should_get_index
1865
+ --------------------------------------
1866
+ Processing by DummyController#index as HTML
1867
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1868
+  (0.1ms) rollback transaction
1869
+  (0.0ms) begin transaction
1870
+ ---------------------
1871
+ EmceeTest: test_truth
1872
+ ---------------------
1873
+  (0.0ms) rollback transaction
1874
+  (0.0ms) begin transaction
1875
+ -------------------------------------
1876
+ Helpers: test_html_import_should_work
1877
+ -------------------------------------
1878
+  (0.1ms) rollback transaction
1879
+  (0.2ms) begin transaction
1880
+ ------------------------------------------------------------
1881
+ CompressorsTest: test_compressor_should_remove_html_comments
1882
+ ------------------------------------------------------------
1883
+  (0.0ms) rollback transaction
1884
+  (0.0ms) begin transaction
1885
+ -----------------------------------------------------------------------------
1886
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1887
+ -----------------------------------------------------------------------------
1888
+  (0.1ms) rollback transaction
1889
+  (0.0ms) begin transaction
1890
+ ------------------------------------------------------------------------------
1891
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
1892
+ ------------------------------------------------------------------------------
1893
+  (0.2ms) rollback transaction
1894
+  (0.1ms) begin transaction
1895
+ ----------------------------------------------------
1896
+ ControllersTest: test_index_should_have_html_imports
1897
+ ----------------------------------------------------
1898
+ Processing by DummyController#index as HTML
1899
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
1900
+ Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
1901
+  (0.1ms) rollback transaction
1902
+  (0.0ms) begin transaction
1903
+ --------------------------------------
1904
+ ControllersTest: test_should_get_index
1905
+ --------------------------------------
1906
+ Processing by DummyController#index as HTML
1907
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1908
+  (0.1ms) rollback transaction
1909
+  (0.0ms) begin transaction
1910
+ ---------------------
1911
+ EmceeTest: test_truth
1912
+ ---------------------
1913
+  (0.0ms) rollback transaction
1914
+  (0.1ms) begin transaction
1915
+ -------------------------------------
1916
+ Helpers: test_html_import_should_work
1917
+ -------------------------------------
1918
+  (0.0ms) rollback transaction
1919
+  (0.2ms) begin transaction
1920
+ ------------------------------------------------------------
1921
+ CompressorsTest: test_compressor_should_remove_html_comments
1922
+ ------------------------------------------------------------
1923
+  (0.1ms) rollback transaction
1924
+  (0.1ms) begin transaction
1925
+ -----------------------------------------------------------------------------
1926
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1927
+ -----------------------------------------------------------------------------
1928
+  (0.0ms) rollback transaction
1929
+  (0.0ms) begin transaction
1930
+ ------------------------------------------------------------------------------
1931
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
1932
+ ------------------------------------------------------------------------------
1933
+  (0.0ms) rollback transaction
1934
+  (0.0ms) begin transaction
1935
+ ----------------------------------------------------
1936
+ ControllersTest: test_index_should_have_html_imports
1937
+ ----------------------------------------------------
1938
+ Processing by DummyController#index as HTML
1939
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
1940
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
1941
+  (0.1ms) rollback transaction
1942
+  (0.1ms) begin transaction
1943
+ --------------------------------------
1944
+ ControllersTest: test_should_get_index
1945
+ --------------------------------------
1946
+ Processing by DummyController#index as HTML
1947
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1948
+  (0.1ms) rollback transaction
1949
+  (0.1ms) begin transaction
1950
+ ---------------------
1951
+ EmceeTest: test_truth
1952
+ ---------------------
1953
+  (0.1ms) rollback transaction
1954
+  (0.1ms) begin transaction
1955
+ -------------------------------------
1956
+ Helpers: test_html_import_should_work
1957
+ -------------------------------------
1958
+  (0.0ms) rollback transaction
1959
+  (0.2ms) begin transaction
1960
+ -----------------------------------------------------------
1961
+ CompressorsTest: test_compressor_should_remove_css_comments
1962
+ -----------------------------------------------------------
1963
+  (0.0ms) rollback transaction
1964
+  (0.0ms) begin transaction
1965
+ ------------------------------------------------------------
1966
+ CompressorsTest: test_compressor_should_remove_html_comments
1967
+ ------------------------------------------------------------
1968
+  (0.0ms) rollback transaction
1969
+  (0.0ms) begin transaction
1970
+ -----------------------------------------------------------------------------
1971
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
1972
+ -----------------------------------------------------------------------------
1973
+  (0.0ms) rollback transaction
1974
+  (0.0ms) begin transaction
1975
+ ------------------------------------------------------------------------------
1976
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
1977
+ ------------------------------------------------------------------------------
1978
+  (0.0ms) rollback transaction
1979
+  (0.0ms) begin transaction
1980
+ ----------------------------------------------------
1981
+ ControllersTest: test_index_should_have_html_imports
1982
+ ----------------------------------------------------
1983
+ Processing by DummyController#index as HTML
1984
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
1985
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
1986
+  (0.1ms) rollback transaction
1987
+  (0.0ms) begin transaction
1988
+ --------------------------------------
1989
+ ControllersTest: test_should_get_index
1990
+ --------------------------------------
1991
+ Processing by DummyController#index as HTML
1992
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1993
+  (0.1ms) rollback transaction
1994
+  (0.0ms) begin transaction
1995
+ ---------------------
1996
+ EmceeTest: test_truth
1997
+ ---------------------
1998
+  (0.0ms) rollback transaction
1999
+  (0.0ms) begin transaction
2000
+ -------------------------------------
2001
+ Helpers: test_html_import_should_work
2002
+ -------------------------------------
2003
+  (0.0ms) rollback transaction
2004
+  (0.2ms) begin transaction
2005
+ -----------------------------------------------------------
2006
+ CompressorsTest: test_compressor_should_remove_css_comments
2007
+ -----------------------------------------------------------
2008
+  (0.2ms) rollback transaction
2009
+  (0.1ms) begin transaction
2010
+ ------------------------------------------------------------
2011
+ CompressorsTest: test_compressor_should_remove_html_comments
2012
+ ------------------------------------------------------------
2013
+  (0.1ms) rollback transaction
2014
+  (0.1ms) begin transaction
2015
+ -----------------------------------------------------------------------------
2016
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
2017
+ -----------------------------------------------------------------------------
2018
+  (0.1ms) rollback transaction
2019
+  (0.1ms) begin transaction
2020
+ ------------------------------------------------------------------------------
2021
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
2022
+ ------------------------------------------------------------------------------
2023
+  (0.2ms) rollback transaction
2024
+  (0.2ms) begin transaction
2025
+ ----------------------------------------------------
2026
+ ControllersTest: test_index_should_have_html_imports
2027
+ ----------------------------------------------------
2028
+ Processing by DummyController#index as HTML
2029
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
2030
+ Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
2031
+  (0.1ms) rollback transaction
2032
+  (0.1ms) begin transaction
2033
+ --------------------------------------
2034
+ ControllersTest: test_should_get_index
2035
+ --------------------------------------
2036
+ Processing by DummyController#index as HTML
2037
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2038
+  (0.1ms) rollback transaction
2039
+  (0.0ms) begin transaction
2040
+ ---------------------
2041
+ EmceeTest: test_truth
2042
+ ---------------------
2043
+  (0.0ms) rollback transaction
2044
+  (0.0ms) begin transaction
2045
+ -------------------------------------
2046
+ Helpers: test_html_import_should_work
2047
+ -------------------------------------
2048
+  (0.0ms) rollback transaction
2049
+  (0.2ms) begin transaction
2050
+ -----------------------------------------------------------
2051
+ CompressorsTest: test_compressor_should_remove_css_comments
2052
+ -----------------------------------------------------------
2053
+  (0.0ms) rollback transaction
2054
+  (0.0ms) begin transaction
2055
+ ------------------------------------------------------------
2056
+ CompressorsTest: test_compressor_should_remove_html_comments
2057
+ ------------------------------------------------------------
2058
+  (0.0ms) rollback transaction
2059
+  (0.0ms) begin transaction
2060
+ -----------------------------------------------------------------------------
2061
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
2062
+ -----------------------------------------------------------------------------
2063
+  (0.0ms) rollback transaction
2064
+  (0.0ms) begin transaction
2065
+ ------------------------------------------------------------------------------
2066
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
2067
+ ------------------------------------------------------------------------------
2068
+  (0.0ms) rollback transaction
2069
+  (0.1ms) begin transaction
2070
+ ----------------------------------------------------
2071
+ ControllersTest: test_index_should_have_html_imports
2072
+ ----------------------------------------------------
2073
+ Processing by DummyController#index as HTML
2074
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
2075
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
2076
+  (0.1ms) rollback transaction
2077
+  (0.0ms) begin transaction
2078
+ --------------------------------------
2079
+ ControllersTest: test_should_get_index
2080
+ --------------------------------------
2081
+ Processing by DummyController#index as HTML
2082
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2083
+  (0.1ms) rollback transaction
2084
+  (0.0ms) begin transaction
2085
+ ---------------------
2086
+ EmceeTest: test_truth
2087
+ ---------------------
2088
+  (0.0ms) rollback transaction
2089
+  (0.0ms) begin transaction
2090
+ -------------------------------------
2091
+ Helpers: test_html_import_should_work
2092
+ -------------------------------------
2093
+  (0.0ms) rollback transaction
2094
+  (0.2ms) begin transaction
2095
+ -----------------------------------------------------------
2096
+ CompressorsTest: test_compressor_should_remove_css_comments
2097
+ -----------------------------------------------------------
2098
+  (0.2ms) rollback transaction
2099
+  (0.1ms) begin transaction
2100
+ ------------------------------------------------------------
2101
+ CompressorsTest: test_compressor_should_remove_html_comments
2102
+ ------------------------------------------------------------
2103
+  (0.1ms) rollback transaction
2104
+  (0.1ms) begin transaction
2105
+ -----------------------------------------------------------------------------
2106
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
2107
+ -----------------------------------------------------------------------------
2108
+  (0.1ms) rollback transaction
2109
+  (0.1ms) begin transaction
2110
+ ------------------------------------------------------------------------------
2111
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
2112
+ ------------------------------------------------------------------------------
2113
+  (0.1ms) rollback transaction
2114
+  (0.2ms) begin transaction
2115
+ ----------------------------------------------------
2116
+ ControllersTest: test_index_should_have_html_imports
2117
+ ----------------------------------------------------
2118
+ Processing by DummyController#index as HTML
2119
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
2120
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
2121
+  (0.1ms) rollback transaction
2122
+  (0.0ms) begin transaction
2123
+ --------------------------------------
2124
+ ControllersTest: test_should_get_index
2125
+ --------------------------------------
2126
+ Processing by DummyController#index as HTML
2127
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2128
+  (0.1ms) rollback transaction
2129
+  (0.0ms) begin transaction
2130
+ ---------------------
2131
+ EmceeTest: test_truth
2132
+ ---------------------
2133
+  (0.0ms) rollback transaction
2134
+  (0.0ms) begin transaction
2135
+ -------------------------------------
2136
+ Helpers: test_html_import_should_work
2137
+ -------------------------------------
2138
+  (0.0ms) rollback transaction
2139
+  (0.2ms) begin transaction
2140
+ -----------------------------------------------------------
2141
+ CompressorsTest: test_compressor_should_remove_css_comments
2142
+ -----------------------------------------------------------
2143
+  (0.0ms) rollback transaction
2144
+  (0.1ms) begin transaction
2145
+ ------------------------------------------------------------
2146
+ CompressorsTest: test_compressor_should_remove_html_comments
2147
+ ------------------------------------------------------------
2148
+  (0.0ms) rollback transaction
2149
+  (0.0ms) begin transaction
2150
+ -----------------------------------------------------------------------------
2151
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
2152
+ -----------------------------------------------------------------------------
2153
+  (0.0ms) rollback transaction
2154
+  (0.0ms) begin transaction
2155
+ ------------------------------------------------------------------------------
2156
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
2157
+ ------------------------------------------------------------------------------
2158
+  (0.0ms) rollback transaction
2159
+  (0.1ms) begin transaction
2160
+ ----------------------------------------------------
2161
+ ControllersTest: test_index_should_have_html_imports
2162
+ ----------------------------------------------------
2163
+ Processing by DummyController#index as HTML
2164
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
2165
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms)
2166
+  (0.1ms) rollback transaction
2167
+  (0.1ms) begin transaction
2168
+ --------------------------------------
2169
+ ControllersTest: test_should_get_index
2170
+ --------------------------------------
2171
+ Processing by DummyController#index as HTML
2172
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2173
+  (0.1ms) rollback transaction
2174
+  (0.0ms) begin transaction
2175
+ ---------------------
2176
+ EmceeTest: test_truth
2177
+ ---------------------
2178
+  (0.0ms) rollback transaction
2179
+  (0.0ms) begin transaction
2180
+ -------------------------------------
2181
+ Helpers: test_html_import_should_work
2182
+ -------------------------------------
2183
+  (0.0ms) rollback transaction
2184
+  (0.2ms) begin transaction
2185
+ ----------------------------------------------------------
2186
+ CompressorsTest: test_compressor_should_remove_blank_lines
2187
+ ----------------------------------------------------------
2188
+  (0.1ms) rollback transaction
2189
+  (0.0ms) begin transaction
2190
+ -----------------------------------------------------------
2191
+ CompressorsTest: test_compressor_should_remove_css_comments
2192
+ -----------------------------------------------------------
2193
+  (0.0ms) rollback transaction
2194
+  (0.0ms) begin transaction
2195
+ ------------------------------------------------------------
2196
+ CompressorsTest: test_compressor_should_remove_html_comments
2197
+ ------------------------------------------------------------
2198
+  (0.0ms) rollback transaction
2199
+  (0.1ms) begin transaction
2200
+ -----------------------------------------------------------------------------
2201
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
2202
+ -----------------------------------------------------------------------------
2203
+  (0.0ms) rollback transaction
2204
+  (0.0ms) begin transaction
2205
+ ------------------------------------------------------------------------------
2206
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
2207
+ ------------------------------------------------------------------------------
2208
+  (0.0ms) rollback transaction
2209
+  (0.1ms) begin transaction
2210
+ ----------------------------------------------------
2211
+ ControllersTest: test_index_should_have_html_imports
2212
+ ----------------------------------------------------
2213
+ Processing by DummyController#index as HTML
2214
+ Rendered dummy/index.html.erb within layouts/application (0.9ms)
2215
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
2216
+  (0.1ms) rollback transaction
2217
+  (0.1ms) begin transaction
2218
+ --------------------------------------
2219
+ ControllersTest: test_should_get_index
2220
+ --------------------------------------
2221
+ Processing by DummyController#index as HTML
2222
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
2223
+  (0.1ms) rollback transaction
2224
+  (0.0ms) begin transaction
2225
+ ---------------------
2226
+ EmceeTest: test_truth
2227
+ ---------------------
2228
+  (0.0ms) rollback transaction
2229
+  (0.0ms) begin transaction
2230
+ -------------------------------------
2231
+ Helpers: test_html_import_should_work
2232
+ -------------------------------------
2233
+  (0.0ms) rollback transaction
2234
+  (0.2ms) begin transaction
2235
+ ----------------------------------------------------------
2236
+ CompressorsTest: test_compressor_should_remove_blank_lines
2237
+ ----------------------------------------------------------
2238
+  (0.2ms) rollback transaction
2239
+  (0.1ms) begin transaction
2240
+ -----------------------------------------------------------
2241
+ CompressorsTest: test_compressor_should_remove_css_comments
2242
+ -----------------------------------------------------------
2243
+  (0.1ms) rollback transaction
2244
+  (0.1ms) begin transaction
2245
+ ------------------------------------------------------------
2246
+ CompressorsTest: test_compressor_should_remove_html_comments
2247
+ ------------------------------------------------------------
2248
+  (0.1ms) rollback transaction
2249
+  (0.1ms) begin transaction
2250
+ -----------------------------------------------------------------------------
2251
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
2252
+ -----------------------------------------------------------------------------
2253
+  (0.1ms) rollback transaction
2254
+  (0.1ms) begin transaction
2255
+ ------------------------------------------------------------------------------
2256
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
2257
+ ------------------------------------------------------------------------------
2258
+  (0.3ms) rollback transaction
2259
+  (0.1ms) begin transaction
2260
+ ----------------------------------------------------
2261
+ ControllersTest: test_index_should_have_html_imports
2262
+ ----------------------------------------------------
2263
+ Processing by DummyController#index as HTML
2264
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
2265
+ Completed 200 OK in 21ms (Views: 21.0ms | ActiveRecord: 0.0ms)
2266
+  (0.1ms) rollback transaction
2267
+  (0.1ms) begin transaction
2268
+ --------------------------------------
2269
+ ControllersTest: test_should_get_index
2270
+ --------------------------------------
2271
+ Processing by DummyController#index as HTML
2272
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2273
+  (0.1ms) rollback transaction
2274
+  (0.0ms) begin transaction
2275
+ ---------------------
2276
+ EmceeTest: test_truth
2277
+ ---------------------
2278
+  (0.0ms) rollback transaction
2279
+  (0.0ms) begin transaction
2280
+ -------------------------------------
2281
+ Helpers: test_html_import_should_work
2282
+ -------------------------------------
2283
+  (0.0ms) rollback transaction
2284
+  (0.2ms) begin transaction
2285
+ ----------------------------------------------------------
2286
+ CompressorsTest: test_compressor_should_remove_blank_lines
2287
+ ----------------------------------------------------------
2288
+  (0.3ms) rollback transaction
2289
+  (0.1ms) begin transaction
2290
+ -----------------------------------------------------------
2291
+ CompressorsTest: test_compressor_should_remove_css_comments
2292
+ -----------------------------------------------------------
2293
+  (0.1ms) rollback transaction
2294
+  (0.1ms) begin transaction
2295
+ ------------------------------------------------------------
2296
+ CompressorsTest: test_compressor_should_remove_html_comments
2297
+ ------------------------------------------------------------
2298
+  (0.1ms) rollback transaction
2299
+  (0.1ms) begin transaction
2300
+ -----------------------------------------------------------------------------
2301
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
2302
+ -----------------------------------------------------------------------------
2303
+  (0.1ms) rollback transaction
2304
+  (0.1ms) begin transaction
2305
+ ------------------------------------------------------------------------------
2306
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
2307
+ ------------------------------------------------------------------------------
2308
+  (0.1ms) rollback transaction
2309
+  (0.1ms) begin transaction
2310
+ ----------------------------------------------------
2311
+ ControllersTest: test_index_should_have_html_imports
2312
+ ----------------------------------------------------
2313
+ Processing by DummyController#index as HTML
2314
+ Rendered dummy/index.html.erb within layouts/application (1.1ms)
2315
+ Completed 200 OK in 18ms (Views: 18.1ms | ActiveRecord: 0.0ms)
2316
+  (0.1ms) rollback transaction
2317
+  (0.1ms) begin transaction
2318
+ --------------------------------------
2319
+ ControllersTest: test_should_get_index
2320
+ --------------------------------------
2321
+ Processing by DummyController#index as HTML
2322
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
2323
+  (0.1ms) rollback transaction
2324
+  (0.1ms) begin transaction
2325
+ ---------------------
2326
+ EmceeTest: test_truth
2327
+ ---------------------
2328
+  (0.1ms) rollback transaction
2329
+  (0.1ms) begin transaction
2330
+ -------------------------------------
2331
+ Helpers: test_html_import_should_work
2332
+ -------------------------------------
2333
+  (0.1ms) rollback transaction
2334
+  (0.2ms) begin transaction
2335
+ ----------------------------------------------------------
2336
+ CompressorsTest: test_compressor_should_remove_blank_lines
2337
+ ----------------------------------------------------------
2338
+  (0.0ms) rollback transaction
2339
+  (0.0ms) begin transaction
2340
+ -----------------------------------------------------------
2341
+ CompressorsTest: test_compressor_should_remove_css_comments
2342
+ -----------------------------------------------------------
2343
+  (0.0ms) rollback transaction
2344
+  (0.0ms) begin transaction
2345
+ ------------------------------------------------------------
2346
+ CompressorsTest: test_compressor_should_remove_html_comments
2347
+ ------------------------------------------------------------
2348
+  (0.0ms) rollback transaction
2349
+  (0.1ms) begin transaction
2350
+ -----------------------------------------------------------------------------
2351
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
2352
+ -----------------------------------------------------------------------------
2353
+  (0.0ms) rollback transaction
2354
+  (0.1ms) begin transaction
2355
+ ------------------------------------------------------------------------------
2356
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
2357
+ ------------------------------------------------------------------------------
2358
+  (0.0ms) rollback transaction
2359
+  (0.0ms) begin transaction
2360
+ ----------------------------------------------------
2361
+ ControllersTest: test_index_should_have_html_imports
2362
+ ----------------------------------------------------
2363
+ Processing by DummyController#index as HTML
2364
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
2365
+ Completed 200 OK in 16ms (Views: 16.1ms | ActiveRecord: 0.0ms)
2366
+  (0.1ms) rollback transaction
2367
+  (0.0ms) begin transaction
2368
+ --------------------------------------
2369
+ ControllersTest: test_should_get_index
2370
+ --------------------------------------
2371
+ Processing by DummyController#index as HTML
2372
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
2373
+  (0.1ms) rollback transaction
2374
+  (0.0ms) begin transaction
2375
+ ---------------------
2376
+ EmceeTest: test_truth
2377
+ ---------------------
2378
+  (0.0ms) rollback transaction
2379
+  (0.0ms) begin transaction
2380
+ -------------------------------------
2381
+ Helpers: test_html_import_should_work
2382
+ -------------------------------------
2383
+  (0.0ms) rollback transaction
2384
+  (0.2ms) begin transaction
2385
+ ----------------------------------------------------------
2386
+ CompressorsTest: test_compressor_should_remove_blank_lines
2387
+ ----------------------------------------------------------
2388
+  (0.0ms) rollback transaction
2389
+  (0.0ms) begin transaction
2390
+ -----------------------------------------------------------
2391
+ CompressorsTest: test_compressor_should_remove_css_comments
2392
+ -----------------------------------------------------------
2393
+  (0.0ms) rollback transaction
2394
+  (0.1ms) begin transaction
2395
+ ------------------------------------------------------------
2396
+ CompressorsTest: test_compressor_should_remove_html_comments
2397
+ ------------------------------------------------------------
2398
+  (0.0ms) rollback transaction
2399
+  (0.0ms) begin transaction
2400
+ -----------------------------------------------------------------------------
2401
+ CompressorsTest: test_compressor_should_remove_multi-line_javascript_comments
2402
+ -----------------------------------------------------------------------------
2403
+  (0.0ms) rollback transaction
2404
+  (0.1ms) begin transaction
2405
+ ------------------------------------------------------------------------------
2406
+ CompressorsTest: test_compressor_should_remove_single-line_javascript_comments
2407
+ ------------------------------------------------------------------------------
2408
+  (0.0ms) rollback transaction
2409
+  (0.0ms) begin transaction
2410
+ ----------------------------------------------------
2411
+ ControllersTest: test_index_should_have_html_imports
2412
+ ----------------------------------------------------
2413
+ Processing by DummyController#index as HTML
2414
+ Rendered dummy/index.html.erb within layouts/application (1.0ms)
2415
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
2416
+  (0.1ms) rollback transaction
2417
+  (0.1ms) begin transaction
2418
+ --------------------------------------
2419
+ ControllersTest: test_should_get_index
2420
+ --------------------------------------
2421
+ Processing by DummyController#index as HTML
2422
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2423
+  (0.1ms) rollback transaction
2424
+  (0.1ms) begin transaction
2425
+ ---------------------
2426
+ EmceeTest: test_truth
2427
+ ---------------------
2428
+  (0.1ms) rollback transaction
2429
+  (0.1ms) begin transaction
2430
+ -------------------------------------
2431
+ Helpers: test_html_import_should_work
2432
+ -------------------------------------
2433
+  (0.1ms) rollback transaction