rails_imager 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/javascripts/rails_imager/application.js +13 -0
  5. data/app/assets/javascripts/rails_imager/images.js +2 -0
  6. data/app/assets/stylesheets/rails_imager/application.css +13 -0
  7. data/app/assets/stylesheets/rails_imager/images.css +4 -0
  8. data/app/controllers/rails_imager/application_controller.rb +4 -0
  9. data/app/controllers/rails_imager/images_controller.rb +33 -0
  10. data/app/helpers/rails_imager/application_helper.rb +4 -0
  11. data/app/helpers/rails_imager/images_helper.rb +26 -0
  12. data/app/views/layouts/rails_imager/application.html.erb +14 -0
  13. data/app/views/rails_imager/images/show.html.erb +2 -0
  14. data/config/routes.rb +3 -0
  15. data/lib/rails_imager.rb +17 -0
  16. data/lib/rails_imager/engine.rb +5 -0
  17. data/lib/rails_imager/image_handler.rb +241 -0
  18. data/lib/rails_imager/version.rb +3 -0
  19. data/lib/tasks/rails_imager_tasks.rake +4 -0
  20. data/test/controllers/rails_imager/images_controller_test.rb +28 -0
  21. data/test/dummy/README.rdoc +28 -0
  22. data/test/dummy/Rakefile +6 -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/helpers/application_helper.rb +2 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/test/dummy/bin/bundle +3 -0
  29. data/test/dummy/bin/rails +4 -0
  30. data/test/dummy/bin/rake +4 -0
  31. data/test/dummy/config.ru +4 -0
  32. data/test/dummy/config/application.rb +23 -0
  33. data/test/dummy/config/boot.rb +5 -0
  34. data/test/dummy/config/database.yml +25 -0
  35. data/test/dummy/config/environment.rb +5 -0
  36. data/test/dummy/config/environments/development.rb +29 -0
  37. data/test/dummy/config/environments/production.rb +80 -0
  38. data/test/dummy/config/environments/test.rb +36 -0
  39. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  40. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  41. data/test/dummy/config/initializers/inflections.rb +16 -0
  42. data/test/dummy/config/initializers/mime_types.rb +5 -0
  43. data/test/dummy/config/initializers/secret_token.rb +12 -0
  44. data/test/dummy/config/initializers/session_store.rb +3 -0
  45. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/test/dummy/config/locales/en.yml +23 -0
  47. data/test/dummy/config/routes.rb +3 -0
  48. data/test/dummy/db/development.sqlite3 +0 -0
  49. data/test/dummy/db/test.sqlite3 +0 -0
  50. data/test/dummy/log/development.log +1367 -0
  51. data/test/dummy/log/test.log +3496 -0
  52. data/test/dummy/public/404.html +58 -0
  53. data/test/dummy/public/422.html +58 -0
  54. data/test/dummy/public/500.html +57 -0
  55. data/test/dummy/public/favicon.ico +0 -0
  56. data/test/dummy/public/test.png +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/0664a19cc0f5d977f80bafcefe17e9c9 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/0a9ac96e2e41642bb5a979bc1bba099d +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/2ca25a1b4dbb5046e79cdc5c2b0e6d55 +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/510b6fd97773642f0b777a14f0ef5366 +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/9e801b0fd4666d3a5cb45345d7de21a7 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/b40bea70cdbfe1b3b11ede81a1d20002 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/be7b64afb60161c417c6465682b304ac +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/c0dbbd2455c6e7638bd41c5f003dff53 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/cc85e49d1f8af3e2bb0073f666f413be +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/e31424e52369b0afcae5d0350c19ae82 +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/f202557856e13ca5921856c87d402bd4 +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/fe7c9c32074445201dccf284f19078bf +0 -0
  69. data/test/dummy/tmp/cache/assets/test/sprockets/0a9ac96e2e41642bb5a979bc1bba099d +0 -0
  70. data/test/dummy/tmp/cache/assets/test/sprockets/2ca25a1b4dbb5046e79cdc5c2b0e6d55 +0 -0
  71. data/test/dummy/tmp/cache/assets/test/sprockets/510b6fd97773642f0b777a14f0ef5366 +0 -0
  72. data/test/dummy/tmp/cache/assets/test/sprockets/9e801b0fd4666d3a5cb45345d7de21a7 +0 -0
  73. data/test/dummy/tmp/cache/assets/test/sprockets/b40bea70cdbfe1b3b11ede81a1d20002 +0 -0
  74. data/test/dummy/tmp/cache/assets/test/sprockets/be7b64afb60161c417c6465682b304ac +0 -0
  75. data/test/dummy/tmp/cache/assets/test/sprockets/c0dbbd2455c6e7638bd41c5f003dff53 +0 -0
  76. data/test/dummy/tmp/cache/assets/test/sprockets/e31424e52369b0afcae5d0350c19ae82 +0 -0
  77. data/test/dummy/tmp/cache/assets/test/sprockets/f202557856e13ca5921856c87d402bd4 +0 -0
  78. data/test/dummy/tmp/cache/assets/test/sprockets/fe7c9c32074445201dccf284f19078bf +0 -0
  79. data/test/helpers/rails_imager/images_helper_test.rb +8 -0
  80. data/test/image_handler_test.rb +138 -0
  81. data/test/integration/navigation_test.rb +10 -0
  82. data/test/rails_imager_test.rb +7 -0
  83. data/test/test.png +0 -0
  84. data/test/test_helper.rb +15 -0
  85. metadata +219 -0
@@ -0,0 +1,3496 @@
1
+  (0.3ms) begin transaction
2
+ ---------------------------------------------------------------------
3
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
4
+ ---------------------------------------------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ --------------------------------------------------------------------
8
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
9
+ --------------------------------------------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+ --------------------------------------------------------------------------------
13
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
14
+ --------------------------------------------------------------------------------
15
+  (0.0ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+ ---------------------------------------------------------
18
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
19
+ ---------------------------------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.0ms) begin transaction
22
+ ------------------------------------------------------------------
23
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
24
+ ------------------------------------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.0ms) begin transaction
27
+ -------------------------------------------------------------
28
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
29
+ -------------------------------------------------------------
30
+  (0.1ms) rollback transaction
31
+  (0.0ms) begin transaction
32
+ ---------------------------------------------------------
33
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
34
+ ---------------------------------------------------------
35
+  (0.1ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+ ------------------------------------------------------------
38
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
39
+ ------------------------------------------------------------
40
+  (0.1ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ ---------------------------
43
+ RailsImagerTest: test_truth
44
+ ---------------------------
45
+  (0.1ms) rollback transaction
46
+  (0.2ms) begin transaction
47
+ ---------------------------------------------------------------------
48
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
49
+ ---------------------------------------------------------------------
50
+  (0.0ms) rollback transaction
51
+  (0.0ms) begin transaction
52
+ --------------------------------------------------------------------
53
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
54
+ --------------------------------------------------------------------
55
+  (0.1ms) rollback transaction
56
+  (0.0ms) begin transaction
57
+ --------------------------------------------------------------------------------
58
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
59
+ --------------------------------------------------------------------------------
60
+  (0.0ms) rollback transaction
61
+  (0.0ms) begin transaction
62
+ ---------------------------------------------------------
63
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
64
+ ---------------------------------------------------------
65
+  (0.1ms) rollback transaction
66
+  (0.0ms) begin transaction
67
+ ------------------------------------------------------------------
68
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
69
+ ------------------------------------------------------------------
70
+  (0.1ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+ -------------------------------------------------------------
73
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
74
+ -------------------------------------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.0ms) begin transaction
77
+ ---------------------------------------------------------
78
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
79
+ ---------------------------------------------------------
80
+  (0.1ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ ------------------------------------------------------------
83
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
84
+ ------------------------------------------------------------
85
+  (0.1ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+ ---------------------------
88
+ RailsImagerTest: test_truth
89
+ ---------------------------
90
+  (0.1ms) rollback transaction
91
+  (0.2ms) begin transaction
92
+ ---------------------------------------------------------------------
93
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
94
+ ---------------------------------------------------------------------
95
+  (0.0ms) rollback transaction
96
+  (0.0ms) begin transaction
97
+ --------------------------------------------------------------------
98
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
99
+ --------------------------------------------------------------------
100
+  (0.1ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ --------------------------------------------------------------------------------
103
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
104
+ --------------------------------------------------------------------------------
105
+  (0.0ms) rollback transaction
106
+  (0.0ms) begin transaction
107
+ ---------------------------------------------------------
108
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
109
+ ---------------------------------------------------------
110
+  (0.1ms) rollback transaction
111
+  (0.0ms) begin transaction
112
+ ------------------------------------------------------------------
113
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
114
+ ------------------------------------------------------------------
115
+  (0.1ms) rollback transaction
116
+  (0.0ms) begin transaction
117
+ -------------------------------------------------------------
118
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
119
+ -------------------------------------------------------------
120
+  (0.1ms) rollback transaction
121
+  (0.0ms) begin transaction
122
+ ---------------------------------------------------------
123
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
124
+ ---------------------------------------------------------
125
+  (0.1ms) rollback transaction
126
+  (0.0ms) begin transaction
127
+ ------------------------------------------------------------
128
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
129
+ ------------------------------------------------------------
130
+  (0.1ms) rollback transaction
131
+  (0.2ms) begin transaction
132
+ ---------------------------
133
+ RailsImagerTest: test_truth
134
+ ---------------------------
135
+  (0.1ms) rollback transaction
136
+  (0.3ms) begin transaction
137
+ ------------------------------------------
138
+ ImageControllerTest: test_can_get_an_image
139
+ ------------------------------------------
140
+  (0.1ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ ---------------------------------------------------------------------
143
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
144
+ ---------------------------------------------------------------------
145
+  (0.0ms) rollback transaction
146
+  (0.0ms) begin transaction
147
+ --------------------------------------------------------------------
148
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
149
+ --------------------------------------------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.0ms) begin transaction
152
+ --------------------------------------------------------------------------------
153
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
154
+ --------------------------------------------------------------------------------
155
+  (0.0ms) rollback transaction
156
+  (0.0ms) begin transaction
157
+ ---------------------------------------------------------
158
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
159
+ ---------------------------------------------------------
160
+  (0.1ms) rollback transaction
161
+  (0.0ms) begin transaction
162
+ ------------------------------------------------------------------
163
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
164
+ ------------------------------------------------------------------
165
+  (0.1ms) rollback transaction
166
+  (0.0ms) begin transaction
167
+ -------------------------------------------------------------
168
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
169
+ -------------------------------------------------------------
170
+  (0.1ms) rollback transaction
171
+  (0.0ms) begin transaction
172
+ ---------------------------------------------------------
173
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
174
+ ---------------------------------------------------------
175
+  (0.1ms) rollback transaction
176
+  (0.0ms) begin transaction
177
+ ------------------------------------------------------------
178
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
179
+ ------------------------------------------------------------
180
+  (0.0ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ ---------------------------
183
+ RailsImagerTest: test_truth
184
+ ---------------------------
185
+  (0.1ms) rollback transaction
186
+  (0.3ms) begin transaction
187
+ -------------------------------------------
188
+ ImagesControllerTest: test_can_get_an_image
189
+ -------------------------------------------
190
+  (0.1ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ ---------------------------------------------------------------------
193
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
194
+ ---------------------------------------------------------------------
195
+  (0.0ms) rollback transaction
196
+  (0.0ms) begin transaction
197
+ --------------------------------------------------------------------
198
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
199
+ --------------------------------------------------------------------
200
+  (0.1ms) rollback transaction
201
+  (0.0ms) begin transaction
202
+ --------------------------------------------------------------------------------
203
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
204
+ --------------------------------------------------------------------------------
205
+  (0.0ms) rollback transaction
206
+  (0.0ms) begin transaction
207
+ ---------------------------------------------------------
208
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
209
+ ---------------------------------------------------------
210
+  (0.1ms) rollback transaction
211
+  (0.0ms) begin transaction
212
+ ------------------------------------------------------------------
213
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
214
+ ------------------------------------------------------------------
215
+  (0.1ms) rollback transaction
216
+  (0.0ms) begin transaction
217
+ -------------------------------------------------------------
218
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
219
+ -------------------------------------------------------------
220
+  (0.1ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+ ---------------------------------------------------------
223
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
224
+ ---------------------------------------------------------
225
+  (0.1ms) rollback transaction
226
+  (0.0ms) begin transaction
227
+ ------------------------------------------------------------
228
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
229
+ ------------------------------------------------------------
230
+  (0.0ms) rollback transaction
231
+  (0.1ms) begin transaction
232
+ ---------------------------
233
+ RailsImagerTest: test_truth
234
+ ---------------------------
235
+  (0.1ms) rollback transaction
236
+  (0.3ms) begin transaction
237
+ -------------------------------------------
238
+ ImagesControllerTest: test_can_get_an_image
239
+ -------------------------------------------
240
+  (0.1ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+ ---------------------------------------------------------------------
243
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
244
+ ---------------------------------------------------------------------
245
+  (0.0ms) rollback transaction
246
+  (0.0ms) begin transaction
247
+ --------------------------------------------------------------------
248
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
249
+ --------------------------------------------------------------------
250
+  (0.1ms) rollback transaction
251
+  (0.0ms) begin transaction
252
+ --------------------------------------------------------------------------------
253
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
254
+ --------------------------------------------------------------------------------
255
+  (0.0ms) rollback transaction
256
+  (0.0ms) begin transaction
257
+ ---------------------------------------------------------
258
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
259
+ ---------------------------------------------------------
260
+  (0.1ms) rollback transaction
261
+  (0.0ms) begin transaction
262
+ ------------------------------------------------------------------
263
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
264
+ ------------------------------------------------------------------
265
+  (0.1ms) rollback transaction
266
+  (0.0ms) begin transaction
267
+ -------------------------------------------------------------
268
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
269
+ -------------------------------------------------------------
270
+  (0.1ms) rollback transaction
271
+  (0.0ms) begin transaction
272
+ ---------------------------------------------------------
273
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
274
+ ---------------------------------------------------------
275
+  (0.1ms) rollback transaction
276
+  (0.0ms) begin transaction
277
+ ------------------------------------------------------------
278
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
279
+ ------------------------------------------------------------
280
+  (0.0ms) rollback transaction
281
+  (0.1ms) begin transaction
282
+ ---------------------------
283
+ RailsImagerTest: test_truth
284
+ ---------------------------
285
+  (0.1ms) rollback transaction
286
+  (0.2ms) begin transaction
287
+ -------------------------------------------
288
+ ImagesControllerTest: test_can_get_an_image
289
+ -------------------------------------------
290
+  (0.1ms) rollback transaction
291
+  (0.2ms) begin transaction
292
+ -----------------------------------------------------------------
293
+ RailsImager::ImagesControllerControllerTest: test_should_get_show
294
+ -----------------------------------------------------------------
295
+  (0.1ms) rollback transaction
296
+  (0.2ms) begin transaction
297
+ -------------------------------------------------------
298
+ RailsImager::ImagesControllerTest: test_should_get_show
299
+ -------------------------------------------------------
300
+  (0.1ms) rollback transaction
301
+  (0.2ms) begin transaction
302
+ -------------------------------------------------------
303
+ RailsImager::ImagesControllerTest: test_should_get_show
304
+ -------------------------------------------------------
305
+  (0.1ms) rollback transaction
306
+  (0.2ms) begin transaction
307
+ -------------------------------------------------------
308
+ RailsImager::ImagesControllerTest: test_should_get_show
309
+ -------------------------------------------------------
310
+  (0.1ms) rollback transaction
311
+  (0.2ms) begin transaction
312
+ -------------------------------------------------------
313
+ RailsImager::ImagesControllerTest: test_should_get_show
314
+ -------------------------------------------------------
315
+  (0.1ms) rollback transaction
316
+  (0.2ms) begin transaction
317
+ -------------------------------------------------------
318
+ RailsImager::ImagesControllerTest: test_should_get_show
319
+ -------------------------------------------------------
320
+  (0.1ms) rollback transaction
321
+  (0.2ms) begin transaction
322
+ -------------------------------------------------------
323
+ RailsImager::ImagesControllerTest: test_should_get_show
324
+ -------------------------------------------------------
325
+  (0.1ms) rollback transaction
326
+  (0.3ms) begin transaction
327
+ -------------------------------------------------------
328
+ RailsImager::ImagesControllerTest: test_should_get_show
329
+ -------------------------------------------------------
330
+  (0.1ms) rollback transaction
331
+  (0.3ms) begin transaction
332
+ ---------------------------------------------------------------------
333
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
334
+ ---------------------------------------------------------------------
335
+  (0.0ms) rollback transaction
336
+  (0.0ms) begin transaction
337
+ --------------------------------------------------------------------
338
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
339
+ --------------------------------------------------------------------
340
+  (0.1ms) rollback transaction
341
+  (0.0ms) begin transaction
342
+ --------------------------------------------------------------------------------
343
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
344
+ --------------------------------------------------------------------------------
345
+  (0.0ms) rollback transaction
346
+  (0.0ms) begin transaction
347
+ ---------------------------------------------------------
348
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
349
+ ---------------------------------------------------------
350
+  (0.1ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+ ------------------------------------------------------------------
353
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
354
+ ------------------------------------------------------------------
355
+  (0.1ms) rollback transaction
356
+  (0.0ms) begin transaction
357
+ -------------------------------------------------------------
358
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
359
+ -------------------------------------------------------------
360
+  (0.1ms) rollback transaction
361
+  (0.0ms) begin transaction
362
+ ---------------------------------------------------------
363
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
364
+ ---------------------------------------------------------
365
+  (0.1ms) rollback transaction
366
+  (0.0ms) begin transaction
367
+ ------------------------------------------------------------
368
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
369
+ ------------------------------------------------------------
370
+  (0.0ms) rollback transaction
371
+  (0.0ms) begin transaction
372
+ -------------------------------------------------------
373
+ RailsImager::ImagesControllerTest: test_should_get_show
374
+ -------------------------------------------------------
375
+  (0.1ms) rollback transaction
376
+  (0.1ms) begin transaction
377
+ ---------------------------
378
+ RailsImagerTest: test_truth
379
+ ---------------------------
380
+  (0.0ms) rollback transaction
381
+  (0.3ms) begin transaction
382
+ ---------------------------------------------------------------------
383
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
384
+ ---------------------------------------------------------------------
385
+  (0.0ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+ --------------------------------------------------------------------
388
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
389
+ --------------------------------------------------------------------
390
+  (0.1ms) rollback transaction
391
+  (0.0ms) begin transaction
392
+ --------------------------------------------------------------------------------
393
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
394
+ --------------------------------------------------------------------------------
395
+  (0.0ms) rollback transaction
396
+  (0.0ms) begin transaction
397
+ ---------------------------------------------------------
398
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
399
+ ---------------------------------------------------------
400
+  (0.1ms) rollback transaction
401
+  (0.0ms) begin transaction
402
+ ------------------------------------------------------------------
403
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
404
+ ------------------------------------------------------------------
405
+  (0.1ms) rollback transaction
406
+  (0.0ms) begin transaction
407
+ -------------------------------------------------------------
408
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
409
+ -------------------------------------------------------------
410
+  (0.1ms) rollback transaction
411
+  (0.0ms) begin transaction
412
+ ---------------------------------------------------------
413
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
414
+ ---------------------------------------------------------
415
+  (0.1ms) rollback transaction
416
+  (0.0ms) begin transaction
417
+ ------------------------------------------------------------
418
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
419
+ ------------------------------------------------------------
420
+  (0.0ms) rollback transaction
421
+  (0.0ms) begin transaction
422
+ -------------------------------------------------------
423
+ RailsImager::ImagesControllerTest: test_should_get_show
424
+ -------------------------------------------------------
425
+  (0.1ms) rollback transaction
426
+  (0.0ms) begin transaction
427
+ ---------------------------
428
+ RailsImagerTest: test_truth
429
+ ---------------------------
430
+  (0.0ms) rollback transaction
431
+  (0.2ms) begin transaction
432
+ ---------------------------------------------------------------------
433
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
434
+ ---------------------------------------------------------------------
435
+  (0.0ms) rollback transaction
436
+  (0.0ms) begin transaction
437
+ --------------------------------------------------------------------
438
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
439
+ --------------------------------------------------------------------
440
+  (0.1ms) rollback transaction
441
+  (0.0ms) begin transaction
442
+ --------------------------------------------------------------------------------
443
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
444
+ --------------------------------------------------------------------------------
445
+  (0.0ms) rollback transaction
446
+  (0.0ms) begin transaction
447
+ ---------------------------------------------------------
448
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
449
+ ---------------------------------------------------------
450
+  (0.1ms) rollback transaction
451
+  (0.0ms) begin transaction
452
+ ------------------------------------------------------------------
453
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
454
+ ------------------------------------------------------------------
455
+  (0.1ms) rollback transaction
456
+  (0.0ms) begin transaction
457
+ -------------------------------------------------------------
458
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
459
+ -------------------------------------------------------------
460
+  (0.1ms) rollback transaction
461
+  (0.0ms) begin transaction
462
+ ---------------------------------------------------------
463
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
464
+ ---------------------------------------------------------
465
+  (0.1ms) rollback transaction
466
+  (0.0ms) begin transaction
467
+ ------------------------------------------------------------
468
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
469
+ ------------------------------------------------------------
470
+  (0.0ms) rollback transaction
471
+  (0.0ms) begin transaction
472
+ -------------------------------------------------------
473
+ RailsImager::ImagesControllerTest: test_should_get_show
474
+ -------------------------------------------------------
475
+  (0.1ms) rollback transaction
476
+  (0.0ms) begin transaction
477
+ ---------------------------
478
+ RailsImagerTest: test_truth
479
+ ---------------------------
480
+  (0.0ms) rollback transaction
481
+  (0.3ms) begin transaction
482
+ ---------------------------------------------------------------------
483
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
484
+ ---------------------------------------------------------------------
485
+  (0.0ms) rollback transaction
486
+  (0.0ms) begin transaction
487
+ --------------------------------------------------------------------
488
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
489
+ --------------------------------------------------------------------
490
+  (0.1ms) rollback transaction
491
+  (0.1ms) begin transaction
492
+ --------------------------------------------------------------------------------
493
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
494
+ --------------------------------------------------------------------------------
495
+  (0.0ms) rollback transaction
496
+  (0.0ms) begin transaction
497
+ ---------------------------------------------------------
498
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
499
+ ---------------------------------------------------------
500
+  (0.1ms) rollback transaction
501
+  (0.0ms) begin transaction
502
+ ------------------------------------------------------------------
503
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
504
+ ------------------------------------------------------------------
505
+  (0.1ms) rollback transaction
506
+  (0.0ms) begin transaction
507
+ -------------------------------------------------------------
508
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
509
+ -------------------------------------------------------------
510
+  (0.1ms) rollback transaction
511
+  (0.1ms) begin transaction
512
+ ---------------------------------------------------------
513
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
514
+ ---------------------------------------------------------
515
+  (0.1ms) rollback transaction
516
+  (0.0ms) begin transaction
517
+ ------------------------------------------------------------
518
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
519
+ ------------------------------------------------------------
520
+  (0.0ms) rollback transaction
521
+  (0.1ms) begin transaction
522
+ ---------------------------
523
+ RailsImagerTest: test_truth
524
+ ---------------------------
525
+  (0.1ms) rollback transaction
526
+  (0.2ms) begin transaction
527
+ ---------------------------------------------------------------------
528
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
529
+ ---------------------------------------------------------------------
530
+  (0.0ms) rollback transaction
531
+  (0.0ms) begin transaction
532
+ --------------------------------------------------------------------
533
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
534
+ --------------------------------------------------------------------
535
+  (0.1ms) rollback transaction
536
+  (0.0ms) begin transaction
537
+ --------------------------------------------------------------------------------
538
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
539
+ --------------------------------------------------------------------------------
540
+  (0.0ms) rollback transaction
541
+  (0.0ms) begin transaction
542
+ ---------------------------------------------------------
543
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
544
+ ---------------------------------------------------------
545
+  (0.1ms) rollback transaction
546
+  (0.0ms) begin transaction
547
+ ------------------------------------------------------------------
548
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
549
+ ------------------------------------------------------------------
550
+  (0.1ms) rollback transaction
551
+  (0.0ms) begin transaction
552
+ -------------------------------------------------------------
553
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
554
+ -------------------------------------------------------------
555
+  (0.1ms) rollback transaction
556
+  (0.0ms) begin transaction
557
+ ---------------------------------------------------------
558
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
559
+ ---------------------------------------------------------
560
+  (0.1ms) rollback transaction
561
+  (0.0ms) begin transaction
562
+ ------------------------------------------------------------
563
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
564
+ ------------------------------------------------------------
565
+  (0.0ms) rollback transaction
566
+  (0.0ms) begin transaction
567
+ -------------------------------------------------------
568
+ RailsImager::ImagesControllerTest: test_should_get_show
569
+ -------------------------------------------------------
570
+  (0.1ms) rollback transaction
571
+  (0.1ms) begin transaction
572
+ ---------------------------
573
+ RailsImagerTest: test_truth
574
+ ---------------------------
575
+  (0.0ms) rollback transaction
576
+  (0.2ms) begin transaction
577
+ ---------------------------------------------------------------------
578
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
579
+ ---------------------------------------------------------------------
580
+  (0.0ms) rollback transaction
581
+  (0.1ms) begin transaction
582
+ --------------------------------------------------------------------
583
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
584
+ --------------------------------------------------------------------
585
+  (0.1ms) rollback transaction
586
+  (0.0ms) begin transaction
587
+ --------------------------------------------------------------------------------
588
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
589
+ --------------------------------------------------------------------------------
590
+  (0.0ms) rollback transaction
591
+  (0.0ms) begin transaction
592
+ ---------------------------------------------------------
593
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
594
+ ---------------------------------------------------------
595
+  (0.1ms) rollback transaction
596
+  (0.0ms) begin transaction
597
+ ------------------------------------------------------------------
598
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
599
+ ------------------------------------------------------------------
600
+  (0.1ms) rollback transaction
601
+  (0.0ms) begin transaction
602
+ -------------------------------------------------------------
603
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
604
+ -------------------------------------------------------------
605
+  (0.1ms) rollback transaction
606
+  (0.0ms) begin transaction
607
+ ---------------------------------------------------------
608
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
609
+ ---------------------------------------------------------
610
+  (0.1ms) rollback transaction
611
+  (0.0ms) begin transaction
612
+ ------------------------------------------------------------
613
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
614
+ ------------------------------------------------------------
615
+  (0.0ms) rollback transaction
616
+  (0.0ms) begin transaction
617
+ -------------------------------------------------------
618
+ RailsImager::ImagesControllerTest: test_should_get_show
619
+ -------------------------------------------------------
620
+ Processing by RailsImager::ImagesController#show as HTML
621
+ Rendered /media/storage/Dev/Rails/rails_imager/app/views/rails_imager/images/show.html.erb within layouts/rails_imager/application (0.8ms)
622
+ Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
623
+  (0.1ms) rollback transaction
624
+  (0.1ms) begin transaction
625
+ ---------------------------
626
+ RailsImagerTest: test_truth
627
+ ---------------------------
628
+  (0.1ms) rollback transaction
629
+  (0.2ms) begin transaction
630
+ ---------------------------------------------------------------------
631
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
632
+ ---------------------------------------------------------------------
633
+  (0.0ms) rollback transaction
634
+  (0.0ms) begin transaction
635
+ --------------------------------------------------------------------
636
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
637
+ --------------------------------------------------------------------
638
+  (0.1ms) rollback transaction
639
+  (0.0ms) begin transaction
640
+ --------------------------------------------------------------------------------
641
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
642
+ --------------------------------------------------------------------------------
643
+  (0.0ms) rollback transaction
644
+  (0.0ms) begin transaction
645
+ ---------------------------------------------------------
646
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
647
+ ---------------------------------------------------------
648
+  (0.1ms) rollback transaction
649
+  (0.0ms) begin transaction
650
+ ------------------------------------------------------------------
651
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
652
+ ------------------------------------------------------------------
653
+  (0.1ms) rollback transaction
654
+  (0.0ms) begin transaction
655
+ -------------------------------------------------------------
656
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
657
+ -------------------------------------------------------------
658
+  (0.1ms) rollback transaction
659
+  (0.0ms) begin transaction
660
+ ---------------------------------------------------------
661
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
662
+ ---------------------------------------------------------
663
+  (0.1ms) rollback transaction
664
+  (0.0ms) begin transaction
665
+ ------------------------------------------------------------
666
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
667
+ ------------------------------------------------------------
668
+  (0.0ms) rollback transaction
669
+  (0.0ms) begin transaction
670
+ -------------------------------------------------------
671
+ RailsImager::ImagesControllerTest: test_should_get_show
672
+ -------------------------------------------------------
673
+ Processing by RailsImager::ImagesController#show as HTML
674
+ Rendered /media/storage/Dev/Rails/rails_imager/app/views/rails_imager/images/show.html.erb within layouts/rails_imager/application (0.7ms)
675
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
676
+  (0.1ms) rollback transaction
677
+  (0.0ms) begin transaction
678
+ ---------------------------
679
+ RailsImagerTest: test_truth
680
+ ---------------------------
681
+  (0.0ms) rollback transaction
682
+  (0.2ms) begin transaction
683
+ ---------------------------------------------------------------------
684
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
685
+ ---------------------------------------------------------------------
686
+  (0.0ms) rollback transaction
687
+  (0.0ms) begin transaction
688
+ --------------------------------------------------------------------
689
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
690
+ --------------------------------------------------------------------
691
+  (0.1ms) rollback transaction
692
+  (0.0ms) begin transaction
693
+ --------------------------------------------------------------------------------
694
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
695
+ --------------------------------------------------------------------------------
696
+  (0.0ms) rollback transaction
697
+  (0.0ms) begin transaction
698
+ ---------------------------------------------------------
699
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
700
+ ---------------------------------------------------------
701
+  (0.1ms) rollback transaction
702
+  (0.0ms) begin transaction
703
+ ------------------------------------------------------------------
704
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
705
+ ------------------------------------------------------------------
706
+  (0.1ms) rollback transaction
707
+  (0.0ms) begin transaction
708
+ -------------------------------------------------------------
709
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
710
+ -------------------------------------------------------------
711
+  (0.1ms) rollback transaction
712
+  (0.0ms) begin transaction
713
+ ---------------------------------------------------------
714
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
715
+ ---------------------------------------------------------
716
+  (0.1ms) rollback transaction
717
+  (0.0ms) begin transaction
718
+ ------------------------------------------------------------
719
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
720
+ ------------------------------------------------------------
721
+  (0.0ms) rollback transaction
722
+  (0.0ms) begin transaction
723
+ -------------------------------------------------------
724
+ RailsImager::ImagesControllerTest: test_should_get_show
725
+ -------------------------------------------------------
726
+ Processing by RailsImager::ImagesController#show as HTML
727
+ Rendered /media/storage/Dev/Rails/rails_imager/app/views/rails_imager/images/show.html.erb within layouts/rails_imager/application (0.7ms)
728
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
729
+  (0.1ms) rollback transaction
730
+  (0.0ms) begin transaction
731
+ ---------------------------
732
+ RailsImagerTest: test_truth
733
+ ---------------------------
734
+  (0.0ms) rollback transaction
735
+  (0.3ms) begin transaction
736
+ ---------------------------------------------------------------------
737
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
738
+ ---------------------------------------------------------------------
739
+  (0.1ms) rollback transaction
740
+  (0.0ms) begin transaction
741
+ --------------------------------------------------------------------
742
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
743
+ --------------------------------------------------------------------
744
+  (0.1ms) rollback transaction
745
+  (0.0ms) begin transaction
746
+ --------------------------------------------------------------------------------
747
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
748
+ --------------------------------------------------------------------------------
749
+  (0.0ms) rollback transaction
750
+  (0.0ms) begin transaction
751
+ ---------------------------------------------------------
752
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
753
+ ---------------------------------------------------------
754
+  (0.1ms) rollback transaction
755
+  (0.0ms) begin transaction
756
+ ------------------------------------------------------------------
757
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
758
+ ------------------------------------------------------------------
759
+  (0.1ms) rollback transaction
760
+  (0.0ms) begin transaction
761
+ -------------------------------------------------------------
762
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
763
+ -------------------------------------------------------------
764
+  (0.1ms) rollback transaction
765
+  (0.0ms) begin transaction
766
+ ---------------------------------------------------------
767
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
768
+ ---------------------------------------------------------
769
+  (0.1ms) rollback transaction
770
+  (0.0ms) begin transaction
771
+ ------------------------------------------------------------
772
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
773
+ ------------------------------------------------------------
774
+  (0.0ms) rollback transaction
775
+  (0.0ms) begin transaction
776
+ -------------------------------------------------------
777
+ RailsImager::ImagesControllerTest: test_should_get_show
778
+ -------------------------------------------------------
779
+ Processing by RailsImager::ImagesController#show as HTML
780
+ Parameters: {"id"=>"test.png"}
781
+ Rendered /media/storage/Dev/Rails/rails_imager/app/views/rails_imager/images/show.html.erb within layouts/rails_imager/application (0.7ms)
782
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
783
+  (0.1ms) rollback transaction
784
+  (0.0ms) begin transaction
785
+ ---------------------------
786
+ RailsImagerTest: test_truth
787
+ ---------------------------
788
+  (0.1ms) rollback transaction
789
+  (0.2ms) begin transaction
790
+ ---------------------------------------------------------------------
791
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
792
+ ---------------------------------------------------------------------
793
+  (0.0ms) rollback transaction
794
+  (0.0ms) begin transaction
795
+ --------------------------------------------------------------------
796
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
797
+ --------------------------------------------------------------------
798
+  (0.1ms) rollback transaction
799
+  (0.0ms) begin transaction
800
+ --------------------------------------------------------------------------------
801
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
802
+ --------------------------------------------------------------------------------
803
+  (0.0ms) rollback transaction
804
+  (0.0ms) begin transaction
805
+ ---------------------------------------------------------
806
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
807
+ ---------------------------------------------------------
808
+  (0.1ms) rollback transaction
809
+  (0.0ms) begin transaction
810
+ ------------------------------------------------------------------
811
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
812
+ ------------------------------------------------------------------
813
+  (0.1ms) rollback transaction
814
+  (0.0ms) begin transaction
815
+ -------------------------------------------------------------
816
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
817
+ -------------------------------------------------------------
818
+  (0.1ms) rollback transaction
819
+  (0.0ms) begin transaction
820
+ ---------------------------------------------------------
821
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
822
+ ---------------------------------------------------------
823
+  (0.1ms) rollback transaction
824
+  (0.0ms) begin transaction
825
+ ------------------------------------------------------------
826
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
827
+ ------------------------------------------------------------
828
+  (0.0ms) rollback transaction
829
+  (0.0ms) begin transaction
830
+ -------------------------------------------------------
831
+ RailsImager::ImagesControllerTest: test_should_get_show
832
+ -------------------------------------------------------
833
+ Processing by RailsImager::ImagesController#show as HTML
834
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
835
+ Rendered /media/storage/Dev/Rails/rails_imager/app/views/rails_imager/images/show.html.erb within layouts/rails_imager/application (0.7ms)
836
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
837
+  (0.1ms) rollback transaction
838
+  (0.0ms) begin transaction
839
+ ---------------------------
840
+ RailsImagerTest: test_truth
841
+ ---------------------------
842
+  (0.0ms) rollback transaction
843
+  (0.2ms) begin transaction
844
+ ---------------------------------------------------------------------
845
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
846
+ ---------------------------------------------------------------------
847
+  (0.0ms) rollback transaction
848
+  (0.0ms) begin transaction
849
+ --------------------------------------------------------------------
850
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
851
+ --------------------------------------------------------------------
852
+  (0.1ms) rollback transaction
853
+  (0.0ms) begin transaction
854
+ --------------------------------------------------------------------------------
855
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
856
+ --------------------------------------------------------------------------------
857
+  (0.0ms) rollback transaction
858
+  (0.0ms) begin transaction
859
+ ---------------------------------------------------------
860
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
861
+ ---------------------------------------------------------
862
+  (0.1ms) rollback transaction
863
+  (0.0ms) begin transaction
864
+ ------------------------------------------------------------------
865
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
866
+ ------------------------------------------------------------------
867
+  (0.1ms) rollback transaction
868
+  (0.0ms) begin transaction
869
+ -------------------------------------------------------------
870
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
871
+ -------------------------------------------------------------
872
+  (0.1ms) rollback transaction
873
+  (0.0ms) begin transaction
874
+ ---------------------------------------------------------
875
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
876
+ ---------------------------------------------------------
877
+  (0.1ms) rollback transaction
878
+  (0.0ms) begin transaction
879
+ ------------------------------------------------------------
880
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
881
+ ------------------------------------------------------------
882
+  (0.0ms) rollback transaction
883
+  (0.0ms) begin transaction
884
+ -------------------------------------------------
885
+ RailsImager::ImagesControllerTest: test_smartsize
886
+ -------------------------------------------------
887
+ Processing by RailsImager::ImagesController#show as HTML
888
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
889
+ Completed 500 Internal Server Error in 0ms
890
+  (0.1ms) rollback transaction
891
+  (0.0ms) begin transaction
892
+ ---------------------------
893
+ RailsImagerTest: test_truth
894
+ ---------------------------
895
+  (0.1ms) rollback transaction
896
+  (0.2ms) begin transaction
897
+ ---------------------------------------------------------------------
898
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
899
+ ---------------------------------------------------------------------
900
+  (0.0ms) rollback transaction
901
+  (0.0ms) begin transaction
902
+ --------------------------------------------------------------------
903
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
904
+ --------------------------------------------------------------------
905
+  (0.1ms) rollback transaction
906
+  (0.0ms) begin transaction
907
+ --------------------------------------------------------------------------------
908
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
909
+ --------------------------------------------------------------------------------
910
+  (0.0ms) rollback transaction
911
+  (0.0ms) begin transaction
912
+ ---------------------------------------------------------
913
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
914
+ ---------------------------------------------------------
915
+  (0.1ms) rollback transaction
916
+  (0.0ms) begin transaction
917
+ ------------------------------------------------------------------
918
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
919
+ ------------------------------------------------------------------
920
+  (0.1ms) rollback transaction
921
+  (0.0ms) begin transaction
922
+ -------------------------------------------------------------
923
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
924
+ -------------------------------------------------------------
925
+  (0.1ms) rollback transaction
926
+  (0.0ms) begin transaction
927
+ ---------------------------------------------------------
928
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
929
+ ---------------------------------------------------------
930
+  (0.1ms) rollback transaction
931
+  (0.0ms) begin transaction
932
+ ------------------------------------------------------------
933
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
934
+ ------------------------------------------------------------
935
+  (0.0ms) rollback transaction
936
+  (0.0ms) begin transaction
937
+ -------------------------------------------------
938
+ RailsImager::ImagesControllerTest: test_smartsize
939
+ -------------------------------------------------
940
+  (0.1ms) rollback transaction
941
+  (0.1ms) begin transaction
942
+ ---------------------------
943
+ RailsImagerTest: test_truth
944
+ ---------------------------
945
+  (0.1ms) rollback transaction
946
+  (0.2ms) begin transaction
947
+ ---------------------------------------------------------------------
948
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
949
+ ---------------------------------------------------------------------
950
+  (0.0ms) rollback transaction
951
+  (0.0ms) begin transaction
952
+ --------------------------------------------------------------------
953
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
954
+ --------------------------------------------------------------------
955
+  (0.1ms) rollback transaction
956
+  (0.0ms) begin transaction
957
+ --------------------------------------------------------------------------------
958
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
959
+ --------------------------------------------------------------------------------
960
+  (0.0ms) rollback transaction
961
+  (0.0ms) begin transaction
962
+ ---------------------------------------------------------
963
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
964
+ ---------------------------------------------------------
965
+  (0.1ms) rollback transaction
966
+  (0.0ms) begin transaction
967
+ ------------------------------------------------------------------
968
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
969
+ ------------------------------------------------------------------
970
+  (0.1ms) rollback transaction
971
+  (0.0ms) begin transaction
972
+ -------------------------------------------------------------
973
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
974
+ -------------------------------------------------------------
975
+  (0.1ms) rollback transaction
976
+  (0.0ms) begin transaction
977
+ ---------------------------------------------------------
978
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
979
+ ---------------------------------------------------------
980
+  (0.1ms) rollback transaction
981
+  (0.0ms) begin transaction
982
+ ------------------------------------------------------------
983
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
984
+ ------------------------------------------------------------
985
+  (0.0ms) rollback transaction
986
+  (0.0ms) begin transaction
987
+ -------------------------------------------------
988
+ RailsImager::ImagesControllerTest: test_smartsize
989
+ -------------------------------------------------
990
+ Processing by RailsImager::ImagesController#show as HTML
991
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
992
+ Completed 500 Internal Server Error in 0ms
993
+  (0.1ms) rollback transaction
994
+  (0.0ms) begin transaction
995
+ ---------------------------
996
+ RailsImagerTest: test_truth
997
+ ---------------------------
998
+  (0.1ms) rollback transaction
999
+  (0.2ms) begin transaction
1000
+ ---------------------------------------------------------------------
1001
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1002
+ ---------------------------------------------------------------------
1003
+  (0.0ms) rollback transaction
1004
+  (0.0ms) begin transaction
1005
+ --------------------------------------------------------------------
1006
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1007
+ --------------------------------------------------------------------
1008
+  (0.1ms) rollback transaction
1009
+  (0.0ms) begin transaction
1010
+ --------------------------------------------------------------------------------
1011
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1012
+ --------------------------------------------------------------------------------
1013
+  (0.0ms) rollback transaction
1014
+  (0.0ms) begin transaction
1015
+ ---------------------------------------------------------
1016
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1017
+ ---------------------------------------------------------
1018
+  (0.1ms) rollback transaction
1019
+  (0.0ms) begin transaction
1020
+ ------------------------------------------------------------------
1021
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1022
+ ------------------------------------------------------------------
1023
+  (0.1ms) rollback transaction
1024
+  (0.0ms) begin transaction
1025
+ -------------------------------------------------------------
1026
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1027
+ -------------------------------------------------------------
1028
+  (0.1ms) rollback transaction
1029
+  (0.1ms) begin transaction
1030
+ ---------------------------------------------------------
1031
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1032
+ ---------------------------------------------------------
1033
+  (0.1ms) rollback transaction
1034
+  (0.0ms) begin transaction
1035
+ ------------------------------------------------------------
1036
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1037
+ ------------------------------------------------------------
1038
+  (0.0ms) rollback transaction
1039
+  (0.0ms) begin transaction
1040
+ -------------------------------------------------
1041
+ RailsImager::ImagesControllerTest: test_smartsize
1042
+ -------------------------------------------------
1043
+ Processing by RailsImager::ImagesController#show as HTML
1044
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1045
+ Completed 500 Internal Server Error in 0ms
1046
+  (0.1ms) rollback transaction
1047
+  (0.1ms) begin transaction
1048
+ ---------------------------
1049
+ RailsImagerTest: test_truth
1050
+ ---------------------------
1051
+  (0.0ms) rollback transaction
1052
+  (0.3ms) begin transaction
1053
+ ---------------------------------------------------------------------
1054
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1055
+ ---------------------------------------------------------------------
1056
+  (0.0ms) rollback transaction
1057
+  (0.0ms) begin transaction
1058
+ --------------------------------------------------------------------
1059
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1060
+ --------------------------------------------------------------------
1061
+  (0.1ms) rollback transaction
1062
+  (0.0ms) begin transaction
1063
+ --------------------------------------------------------------------------------
1064
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1065
+ --------------------------------------------------------------------------------
1066
+  (0.0ms) rollback transaction
1067
+  (0.0ms) begin transaction
1068
+ ---------------------------------------------------------
1069
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1070
+ ---------------------------------------------------------
1071
+  (0.1ms) rollback transaction
1072
+  (0.0ms) begin transaction
1073
+ ------------------------------------------------------------------
1074
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1075
+ ------------------------------------------------------------------
1076
+  (0.1ms) rollback transaction
1077
+  (0.0ms) begin transaction
1078
+ -------------------------------------------------------------
1079
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1080
+ -------------------------------------------------------------
1081
+  (0.1ms) rollback transaction
1082
+  (0.0ms) begin transaction
1083
+ ---------------------------------------------------------
1084
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1085
+ ---------------------------------------------------------
1086
+  (0.1ms) rollback transaction
1087
+  (0.0ms) begin transaction
1088
+ ------------------------------------------------------------
1089
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1090
+ ------------------------------------------------------------
1091
+  (0.0ms) rollback transaction
1092
+  (0.0ms) begin transaction
1093
+ -------------------------------------------------
1094
+ RailsImager::ImagesControllerTest: test_smartsize
1095
+ -------------------------------------------------
1096
+ Processing by RailsImager::ImagesController#show as HTML
1097
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1098
+ Completed 500 Internal Server Error in 0ms
1099
+  (0.1ms) rollback transaction
1100
+  (0.0ms) begin transaction
1101
+ ---------------------------
1102
+ RailsImagerTest: test_truth
1103
+ ---------------------------
1104
+  (0.0ms) rollback transaction
1105
+  (0.2ms) begin transaction
1106
+ ---------------------------------------------------------------------
1107
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1108
+ ---------------------------------------------------------------------
1109
+  (0.0ms) rollback transaction
1110
+  (0.0ms) begin transaction
1111
+ --------------------------------------------------------------------
1112
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1113
+ --------------------------------------------------------------------
1114
+  (0.1ms) rollback transaction
1115
+  (0.0ms) begin transaction
1116
+ --------------------------------------------------------------------------------
1117
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1118
+ --------------------------------------------------------------------------------
1119
+  (0.0ms) rollback transaction
1120
+  (0.0ms) begin transaction
1121
+ ---------------------------------------------------------
1122
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1123
+ ---------------------------------------------------------
1124
+  (0.1ms) rollback transaction
1125
+  (0.0ms) begin transaction
1126
+ ------------------------------------------------------------------
1127
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1128
+ ------------------------------------------------------------------
1129
+  (0.1ms) rollback transaction
1130
+  (0.0ms) begin transaction
1131
+ -------------------------------------------------------------
1132
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1133
+ -------------------------------------------------------------
1134
+  (0.1ms) rollback transaction
1135
+  (0.0ms) begin transaction
1136
+ ---------------------------------------------------------
1137
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1138
+ ---------------------------------------------------------
1139
+  (0.1ms) rollback transaction
1140
+  (0.0ms) begin transaction
1141
+ ------------------------------------------------------------
1142
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1143
+ ------------------------------------------------------------
1144
+  (0.0ms) rollback transaction
1145
+  (0.0ms) begin transaction
1146
+ -------------------------------------------------
1147
+ RailsImager::ImagesControllerTest: test_smartsize
1148
+ -------------------------------------------------
1149
+ Processing by RailsImager::ImagesController#show as HTML
1150
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1151
+ Completed 500 Internal Server Error in 1ms
1152
+  (0.1ms) rollback transaction
1153
+  (0.0ms) begin transaction
1154
+ ---------------------------
1155
+ RailsImagerTest: test_truth
1156
+ ---------------------------
1157
+  (0.0ms) rollback transaction
1158
+  (0.3ms) begin transaction
1159
+ ---------------------------------------------------------------------
1160
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1161
+ ---------------------------------------------------------------------
1162
+  (0.1ms) rollback transaction
1163
+  (0.0ms) begin transaction
1164
+ --------------------------------------------------------------------
1165
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1166
+ --------------------------------------------------------------------
1167
+  (0.1ms) rollback transaction
1168
+  (0.0ms) begin transaction
1169
+ --------------------------------------------------------------------------------
1170
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1171
+ --------------------------------------------------------------------------------
1172
+  (0.0ms) rollback transaction
1173
+  (0.0ms) begin transaction
1174
+ ---------------------------------------------------------
1175
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1176
+ ---------------------------------------------------------
1177
+  (0.1ms) rollback transaction
1178
+  (0.0ms) begin transaction
1179
+ ------------------------------------------------------------------
1180
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1181
+ ------------------------------------------------------------------
1182
+  (0.1ms) rollback transaction
1183
+  (0.0ms) begin transaction
1184
+ -------------------------------------------------------------
1185
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1186
+ -------------------------------------------------------------
1187
+  (0.1ms) rollback transaction
1188
+  (0.0ms) begin transaction
1189
+ ---------------------------------------------------------
1190
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1191
+ ---------------------------------------------------------
1192
+  (0.1ms) rollback transaction
1193
+  (0.0ms) begin transaction
1194
+ ------------------------------------------------------------
1195
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1196
+ ------------------------------------------------------------
1197
+  (0.0ms) rollback transaction
1198
+  (0.0ms) begin transaction
1199
+ -------------------------------------------------
1200
+ RailsImager::ImagesControllerTest: test_smartsize
1201
+ -------------------------------------------------
1202
+ Processing by RailsImager::ImagesController#show as HTML
1203
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1204
+ Completed 500 Internal Server Error in 1ms
1205
+  (0.1ms) rollback transaction
1206
+  (0.0ms) begin transaction
1207
+ ---------------------------
1208
+ RailsImagerTest: test_truth
1209
+ ---------------------------
1210
+  (0.0ms) rollback transaction
1211
+  (0.3ms) begin transaction
1212
+ ---------------------------------------------------------------------
1213
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1214
+ ---------------------------------------------------------------------
1215
+  (0.0ms) rollback transaction
1216
+  (0.0ms) begin transaction
1217
+ --------------------------------------------------------------------
1218
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1219
+ --------------------------------------------------------------------
1220
+  (0.1ms) rollback transaction
1221
+  (0.0ms) begin transaction
1222
+ --------------------------------------------------------------------------------
1223
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1224
+ --------------------------------------------------------------------------------
1225
+  (0.0ms) rollback transaction
1226
+  (0.0ms) begin transaction
1227
+ ---------------------------------------------------------
1228
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1229
+ ---------------------------------------------------------
1230
+  (0.1ms) rollback transaction
1231
+  (0.0ms) begin transaction
1232
+ ------------------------------------------------------------------
1233
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1234
+ ------------------------------------------------------------------
1235
+  (0.1ms) rollback transaction
1236
+  (0.0ms) begin transaction
1237
+ -------------------------------------------------------------
1238
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1239
+ -------------------------------------------------------------
1240
+  (0.1ms) rollback transaction
1241
+  (0.0ms) begin transaction
1242
+ ---------------------------------------------------------
1243
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1244
+ ---------------------------------------------------------
1245
+  (0.1ms) rollback transaction
1246
+  (0.0ms) begin transaction
1247
+ ------------------------------------------------------------
1248
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1249
+ ------------------------------------------------------------
1250
+  (0.0ms) rollback transaction
1251
+  (0.1ms) begin transaction
1252
+ -------------------------------------------------
1253
+ RailsImager::ImagesControllerTest: test_smartsize
1254
+ -------------------------------------------------
1255
+ Processing by RailsImager::ImagesController#show as HTML
1256
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1257
+ Completed 500 Internal Server Error in 1ms
1258
+  (0.1ms) rollback transaction
1259
+  (0.0ms) begin transaction
1260
+ ---------------------------
1261
+ RailsImagerTest: test_truth
1262
+ ---------------------------
1263
+  (0.1ms) rollback transaction
1264
+  (0.2ms) begin transaction
1265
+ ---------------------------------------------------------------------
1266
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1267
+ ---------------------------------------------------------------------
1268
+  (0.0ms) rollback transaction
1269
+  (0.0ms) begin transaction
1270
+ --------------------------------------------------------------------
1271
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1272
+ --------------------------------------------------------------------
1273
+  (0.1ms) rollback transaction
1274
+  (0.0ms) begin transaction
1275
+ --------------------------------------------------------------------------------
1276
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1277
+ --------------------------------------------------------------------------------
1278
+  (0.0ms) rollback transaction
1279
+  (0.0ms) begin transaction
1280
+ ---------------------------------------------------------
1281
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1282
+ ---------------------------------------------------------
1283
+  (0.1ms) rollback transaction
1284
+  (0.1ms) begin transaction
1285
+ ------------------------------------------------------------------
1286
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1287
+ ------------------------------------------------------------------
1288
+  (0.1ms) rollback transaction
1289
+  (0.0ms) begin transaction
1290
+ -------------------------------------------------------------
1291
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1292
+ -------------------------------------------------------------
1293
+  (0.1ms) rollback transaction
1294
+  (0.0ms) begin transaction
1295
+ ---------------------------------------------------------
1296
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1297
+ ---------------------------------------------------------
1298
+  (0.1ms) rollback transaction
1299
+  (0.0ms) begin transaction
1300
+ ------------------------------------------------------------
1301
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1302
+ ------------------------------------------------------------
1303
+  (0.0ms) rollback transaction
1304
+  (0.0ms) begin transaction
1305
+ -------------------------------------------------
1306
+ RailsImager::ImagesControllerTest: test_smartsize
1307
+ -------------------------------------------------
1308
+ Processing by RailsImager::ImagesController#show as HTML
1309
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1310
+ Completed 500 Internal Server Error in 1ms
1311
+  (0.1ms) rollback transaction
1312
+  (0.1ms) begin transaction
1313
+ ---------------------------
1314
+ RailsImagerTest: test_truth
1315
+ ---------------------------
1316
+  (0.0ms) rollback transaction
1317
+  (0.3ms) begin transaction
1318
+ ---------------------------------------------------------------------
1319
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1320
+ ---------------------------------------------------------------------
1321
+  (0.1ms) rollback transaction
1322
+  (0.0ms) begin transaction
1323
+ --------------------------------------------------------------------
1324
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1325
+ --------------------------------------------------------------------
1326
+  (0.1ms) rollback transaction
1327
+  (0.0ms) begin transaction
1328
+ --------------------------------------------------------------------------------
1329
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1330
+ --------------------------------------------------------------------------------
1331
+  (0.0ms) rollback transaction
1332
+  (0.0ms) begin transaction
1333
+ ---------------------------------------------------------
1334
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1335
+ ---------------------------------------------------------
1336
+  (0.1ms) rollback transaction
1337
+  (0.0ms) begin transaction
1338
+ ------------------------------------------------------------------
1339
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1340
+ ------------------------------------------------------------------
1341
+  (0.1ms) rollback transaction
1342
+  (0.1ms) begin transaction
1343
+ -------------------------------------------------------------
1344
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1345
+ -------------------------------------------------------------
1346
+  (0.1ms) rollback transaction
1347
+  (0.0ms) begin transaction
1348
+ ---------------------------------------------------------
1349
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1350
+ ---------------------------------------------------------
1351
+  (0.1ms) rollback transaction
1352
+  (0.1ms) begin transaction
1353
+ ------------------------------------------------------------
1354
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1355
+ ------------------------------------------------------------
1356
+  (0.0ms) rollback transaction
1357
+  (0.0ms) begin transaction
1358
+ -------------------------------------------------
1359
+ RailsImager::ImagesControllerTest: test_smartsize
1360
+ -------------------------------------------------
1361
+ Processing by RailsImager::ImagesController#show as HTML
1362
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1363
+ Completed 500 Internal Server Error in 0ms
1364
+  (0.1ms) rollback transaction
1365
+  (0.0ms) begin transaction
1366
+ ---------------------------
1367
+ RailsImagerTest: test_truth
1368
+ ---------------------------
1369
+  (0.0ms) rollback transaction
1370
+  (0.2ms) begin transaction
1371
+ ---------------------------------------------------------------------
1372
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1373
+ ---------------------------------------------------------------------
1374
+  (0.0ms) rollback transaction
1375
+  (0.0ms) begin transaction
1376
+ --------------------------------------------------------------------
1377
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1378
+ --------------------------------------------------------------------
1379
+  (0.1ms) rollback transaction
1380
+  (0.0ms) begin transaction
1381
+ --------------------------------------------------------------------------------
1382
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1383
+ --------------------------------------------------------------------------------
1384
+  (0.0ms) rollback transaction
1385
+  (0.0ms) begin transaction
1386
+ ---------------------------------------------------------
1387
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1388
+ ---------------------------------------------------------
1389
+  (0.1ms) rollback transaction
1390
+  (0.0ms) begin transaction
1391
+ ------------------------------------------------------------------
1392
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1393
+ ------------------------------------------------------------------
1394
+  (0.1ms) rollback transaction
1395
+  (0.0ms) begin transaction
1396
+ -------------------------------------------------------------
1397
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1398
+ -------------------------------------------------------------
1399
+  (0.1ms) rollback transaction
1400
+  (0.0ms) begin transaction
1401
+ ---------------------------------------------------------
1402
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1403
+ ---------------------------------------------------------
1404
+  (0.1ms) rollback transaction
1405
+  (0.0ms) begin transaction
1406
+ ------------------------------------------------------------
1407
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1408
+ ------------------------------------------------------------
1409
+  (0.0ms) rollback transaction
1410
+  (0.0ms) begin transaction
1411
+ -------------------------------------------------
1412
+ RailsImager::ImagesControllerTest: test_smartsize
1413
+ -------------------------------------------------
1414
+ Processing by RailsImager::ImagesController#show as HTML
1415
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1416
+ Completed 500 Internal Server Error in 7ms
1417
+  (0.1ms) rollback transaction
1418
+  (0.1ms) begin transaction
1419
+ ---------------------------
1420
+ RailsImagerTest: test_truth
1421
+ ---------------------------
1422
+  (0.0ms) rollback transaction
1423
+  (0.3ms) begin transaction
1424
+ ---------------------------------------------------------------------
1425
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1426
+ ---------------------------------------------------------------------
1427
+  (0.0ms) rollback transaction
1428
+  (0.0ms) begin transaction
1429
+ --------------------------------------------------------------------
1430
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1431
+ --------------------------------------------------------------------
1432
+  (0.1ms) rollback transaction
1433
+  (0.0ms) begin transaction
1434
+ --------------------------------------------------------------------------------
1435
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1436
+ --------------------------------------------------------------------------------
1437
+  (0.0ms) rollback transaction
1438
+  (0.0ms) begin transaction
1439
+ ---------------------------------------------------------
1440
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1441
+ ---------------------------------------------------------
1442
+  (0.1ms) rollback transaction
1443
+  (0.0ms) begin transaction
1444
+ ------------------------------------------------------------------
1445
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1446
+ ------------------------------------------------------------------
1447
+  (0.1ms) rollback transaction
1448
+  (0.0ms) begin transaction
1449
+ -------------------------------------------------------------
1450
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1451
+ -------------------------------------------------------------
1452
+  (0.1ms) rollback transaction
1453
+  (0.0ms) begin transaction
1454
+ ---------------------------------------------------------
1455
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1456
+ ---------------------------------------------------------
1457
+  (0.1ms) rollback transaction
1458
+  (0.0ms) begin transaction
1459
+ ------------------------------------------------------------
1460
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1461
+ ------------------------------------------------------------
1462
+  (0.0ms) rollback transaction
1463
+  (0.0ms) begin transaction
1464
+ -------------------------------------------------
1465
+ RailsImager::ImagesControllerTest: test_smartsize
1466
+ -------------------------------------------------
1467
+ Processing by RailsImager::ImagesController#show as HTML
1468
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1469
+ Rendered text template (0.0ms)
1470
+ Sent data (3.2ms)
1471
+ Completed 200 OK in 33ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1472
+  (0.1ms) rollback transaction
1473
+  (0.0ms) begin transaction
1474
+ ---------------------------
1475
+ RailsImagerTest: test_truth
1476
+ ---------------------------
1477
+  (0.0ms) rollback transaction
1478
+  (0.3ms) begin transaction
1479
+ ---------------------------------------------------------------------
1480
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1481
+ ---------------------------------------------------------------------
1482
+  (0.0ms) rollback transaction
1483
+  (0.1ms) begin transaction
1484
+ --------------------------------------------------------------------
1485
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1486
+ --------------------------------------------------------------------
1487
+  (0.1ms) rollback transaction
1488
+  (0.0ms) begin transaction
1489
+ --------------------------------------------------------------------------------
1490
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1491
+ --------------------------------------------------------------------------------
1492
+  (0.0ms) rollback transaction
1493
+  (0.0ms) begin transaction
1494
+ ---------------------------------------------------------
1495
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1496
+ ---------------------------------------------------------
1497
+  (0.1ms) rollback transaction
1498
+  (0.0ms) begin transaction
1499
+ ------------------------------------------------------------------
1500
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1501
+ ------------------------------------------------------------------
1502
+  (0.1ms) rollback transaction
1503
+  (0.0ms) begin transaction
1504
+ -------------------------------------------------------------
1505
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1506
+ -------------------------------------------------------------
1507
+  (0.1ms) rollback transaction
1508
+  (0.0ms) begin transaction
1509
+ ---------------------------------------------------------
1510
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1511
+ ---------------------------------------------------------
1512
+  (0.1ms) rollback transaction
1513
+  (0.0ms) begin transaction
1514
+ ------------------------------------------------------------
1515
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1516
+ ------------------------------------------------------------
1517
+  (0.0ms) rollback transaction
1518
+  (0.0ms) begin transaction
1519
+ -------------------------------------------------
1520
+ RailsImager::ImagesControllerTest: test_smartsize
1521
+ -------------------------------------------------
1522
+ Processing by RailsImager::ImagesController#show as HTML
1523
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1524
+ Rendered text template (0.0ms)
1525
+ Sent data (3.1ms)
1526
+ Completed 200 OK in 34ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1527
+  (0.1ms) rollback transaction
1528
+  (0.0ms) begin transaction
1529
+ ---------------------------
1530
+ RailsImagerTest: test_truth
1531
+ ---------------------------
1532
+  (0.0ms) rollback transaction
1533
+  (0.2ms) begin transaction
1534
+ ---------------------------------------------------------------------
1535
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1536
+ ---------------------------------------------------------------------
1537
+  (0.0ms) rollback transaction
1538
+  (0.0ms) begin transaction
1539
+ --------------------------------------------------------------------
1540
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1541
+ --------------------------------------------------------------------
1542
+  (0.1ms) rollback transaction
1543
+  (0.0ms) begin transaction
1544
+ --------------------------------------------------------------------------------
1545
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1546
+ --------------------------------------------------------------------------------
1547
+  (0.0ms) rollback transaction
1548
+  (0.0ms) begin transaction
1549
+ ---------------------------------------------------------
1550
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1551
+ ---------------------------------------------------------
1552
+  (0.1ms) rollback transaction
1553
+  (0.0ms) begin transaction
1554
+ ------------------------------------------------------------------
1555
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1556
+ ------------------------------------------------------------------
1557
+  (0.1ms) rollback transaction
1558
+  (0.0ms) begin transaction
1559
+ -------------------------------------------------------------
1560
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1561
+ -------------------------------------------------------------
1562
+  (0.1ms) rollback transaction
1563
+  (0.0ms) begin transaction
1564
+ ---------------------------------------------------------
1565
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1566
+ ---------------------------------------------------------
1567
+  (0.1ms) rollback transaction
1568
+  (0.0ms) begin transaction
1569
+ ------------------------------------------------------------
1570
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1571
+ ------------------------------------------------------------
1572
+  (0.0ms) rollback transaction
1573
+  (0.1ms) begin transaction
1574
+ -------------------------------------------------
1575
+ RailsImager::ImagesControllerTest: test_smartsize
1576
+ -------------------------------------------------
1577
+ Processing by RailsImager::ImagesController#show as HTML
1578
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1579
+ Rendered text template (0.0ms)
1580
+ Sent data (3.2ms)
1581
+ Completed 200 OK in 40ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1582
+  (0.1ms) rollback transaction
1583
+  (0.0ms) begin transaction
1584
+ ---------------------------
1585
+ RailsImagerTest: test_truth
1586
+ ---------------------------
1587
+  (0.0ms) rollback transaction
1588
+  (0.2ms) begin transaction
1589
+ -------------------------------------------------
1590
+ RailsImager::ImagesControllerTest: test_smartsize
1591
+ -------------------------------------------------
1592
+ Processing by RailsImager::ImagesController#show as HTML
1593
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1594
+ Rendered text template (0.0ms)
1595
+ Sent data (3.0ms)
1596
+ Completed 200 OK in 46ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1597
+  (0.1ms) rollback transaction
1598
+  (0.2ms) begin transaction
1599
+ -------------------------------------------------
1600
+ RailsImager::ImagesControllerTest: test_smartsize
1601
+ -------------------------------------------------
1602
+ Processing by RailsImager::ImagesController#show as HTML
1603
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1604
+ Rendered text template (0.0ms)
1605
+ Sent data (3.0ms)
1606
+ Completed 200 OK in 61ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1607
+  (0.1ms) rollback transaction
1608
+  (0.3ms) begin transaction
1609
+ -------------------------------------------------
1610
+ RailsImager::ImagesControllerTest: test_smartsize
1611
+ -------------------------------------------------
1612
+ Processing by RailsImager::ImagesController#show as HTML
1613
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1614
+ Rendered text template (0.0ms)
1615
+ Sent data (3.0ms)
1616
+ Completed 200 OK in 54ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1617
+  (0.1ms) rollback transaction
1618
+  (0.2ms) begin transaction
1619
+ -------------------------------------------------
1620
+ RailsImager::ImagesControllerTest: test_smartsize
1621
+ -------------------------------------------------
1622
+ Processing by RailsImager::ImagesController#show as HTML
1623
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1624
+ Rendered text template (0.0ms)
1625
+ Sent data (3.1ms)
1626
+ Completed 200 OK in 52ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1627
+  (0.1ms) rollback transaction
1628
+  (0.2ms) begin transaction
1629
+ -------------------------------------------------
1630
+ RailsImager::ImagesControllerTest: test_smartsize
1631
+ -------------------------------------------------
1632
+ Processing by RailsImager::ImagesController#show as HTML
1633
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1634
+ Rendered text template (0.0ms)
1635
+ Sent data (3.1ms)
1636
+ Completed 200 OK in 40ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1637
+  (0.1ms) rollback transaction
1638
+  (0.2ms) begin transaction
1639
+ -------------------------------------------------
1640
+ RailsImager::ImagesControllerTest: test_smartsize
1641
+ -------------------------------------------------
1642
+ Processing by RailsImager::ImagesController#show as HTML
1643
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1644
+ Rendered text template (0.0ms)
1645
+ Sent data (3.0ms)
1646
+ Completed 200 OK in 42ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1647
+  (0.1ms) rollback transaction
1648
+  (0.2ms) begin transaction
1649
+ -------------------------------------------------
1650
+ RailsImager::ImagesControllerTest: test_smartsize
1651
+ -------------------------------------------------
1652
+ Processing by RailsImager::ImagesController#show as HTML
1653
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1654
+ Rendered text template (0.0ms)
1655
+ Sent data (3.0ms)
1656
+ Completed 200 OK in 39ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1657
+  (0.1ms) rollback transaction
1658
+  (0.2ms) begin transaction
1659
+ -------------------------------------------------
1660
+ RailsImager::ImagesControllerTest: test_smartsize
1661
+ -------------------------------------------------
1662
+ Processing by RailsImager::ImagesController#show as HTML
1663
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1664
+ Rendered text template (0.0ms)
1665
+ Sent data (3.1ms)
1666
+ Completed 200 OK in 47ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1667
+  (0.1ms) rollback transaction
1668
+  (0.3ms) begin transaction
1669
+ -------------------------------------------------
1670
+ RailsImager::ImagesControllerTest: test_smartsize
1671
+ -------------------------------------------------
1672
+ Processing by RailsImager::ImagesController#show as HTML
1673
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1674
+ Rendered text template (0.0ms)
1675
+ Sent data (3.0ms)
1676
+ Completed 200 OK in 37ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1677
+  (0.1ms) rollback transaction
1678
+  (0.2ms) begin transaction
1679
+ ---------------------------------------------------------------------
1680
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1681
+ ---------------------------------------------------------------------
1682
+  (0.0ms) rollback transaction
1683
+  (0.0ms) begin transaction
1684
+ --------------------------------------------------------------------
1685
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1686
+ --------------------------------------------------------------------
1687
+  (0.1ms) rollback transaction
1688
+  (0.0ms) begin transaction
1689
+ --------------------------------------------------------------------------------
1690
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1691
+ --------------------------------------------------------------------------------
1692
+  (0.0ms) rollback transaction
1693
+  (0.0ms) begin transaction
1694
+ ---------------------------------------------------------
1695
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1696
+ ---------------------------------------------------------
1697
+  (0.1ms) rollback transaction
1698
+  (0.0ms) begin transaction
1699
+ ------------------------------------------------------------------
1700
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1701
+ ------------------------------------------------------------------
1702
+  (0.1ms) rollback transaction
1703
+  (0.0ms) begin transaction
1704
+ -------------------------------------------------------------
1705
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1706
+ -------------------------------------------------------------
1707
+  (0.1ms) rollback transaction
1708
+  (0.0ms) begin transaction
1709
+ ---------------------------------------------------------
1710
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1711
+ ---------------------------------------------------------
1712
+  (0.1ms) rollback transaction
1713
+  (0.0ms) begin transaction
1714
+ ------------------------------------------------------------
1715
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1716
+ ------------------------------------------------------------
1717
+  (0.0ms) rollback transaction
1718
+  (0.0ms) begin transaction
1719
+ -------------------------------------------------
1720
+ RailsImager::ImagesControllerTest: test_smartsize
1721
+ -------------------------------------------------
1722
+ Processing by RailsImager::ImagesController#show as HTML
1723
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1724
+ Rendered text template (0.0ms)
1725
+ Sent data (3.2ms)
1726
+ Completed 200 OK in 34ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1727
+  (0.1ms) rollback transaction
1728
+  (0.0ms) begin transaction
1729
+ ---------------------------
1730
+ RailsImagerTest: test_truth
1731
+ ---------------------------
1732
+  (0.0ms) rollback transaction
1733
+  (0.2ms) begin transaction
1734
+ ---------------------------------------------------------------------
1735
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1736
+ ---------------------------------------------------------------------
1737
+  (0.0ms) rollback transaction
1738
+  (0.0ms) begin transaction
1739
+ --------------------------------------------------------------------
1740
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1741
+ --------------------------------------------------------------------
1742
+  (0.1ms) rollback transaction
1743
+  (0.0ms) begin transaction
1744
+ --------------------------------------------------------------------------------
1745
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1746
+ --------------------------------------------------------------------------------
1747
+  (0.0ms) rollback transaction
1748
+  (0.0ms) begin transaction
1749
+ ---------------------------------------------------------
1750
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1751
+ ---------------------------------------------------------
1752
+  (0.1ms) rollback transaction
1753
+  (0.0ms) begin transaction
1754
+ ------------------------------------------------------------------
1755
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1756
+ ------------------------------------------------------------------
1757
+  (0.1ms) rollback transaction
1758
+  (0.0ms) begin transaction
1759
+ -------------------------------------------------------------
1760
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1761
+ -------------------------------------------------------------
1762
+  (0.1ms) rollback transaction
1763
+  (0.0ms) begin transaction
1764
+ ---------------------------------------------------------
1765
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1766
+ ---------------------------------------------------------
1767
+  (2.0ms) rollback transaction
1768
+  (0.0ms) begin transaction
1769
+ ------------------------------------------------------------
1770
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1771
+ ------------------------------------------------------------
1772
+  (0.0ms) rollback transaction
1773
+  (0.0ms) begin transaction
1774
+ -------------------------------------------------
1775
+ RailsImager::ImagesControllerTest: test_smartsize
1776
+ -------------------------------------------------
1777
+ Processing by RailsImager::ImagesController#show as HTML
1778
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1779
+ Rendered text template (0.0ms)
1780
+ Sent data (3.2ms)
1781
+ Completed 200 OK in 36ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1782
+  (0.1ms) rollback transaction
1783
+  (0.0ms) begin transaction
1784
+ ---------------------------
1785
+ RailsImagerTest: test_truth
1786
+ ---------------------------
1787
+  (0.1ms) rollback transaction
1788
+  (0.2ms) begin transaction
1789
+ ---------------------------------------------------------------------
1790
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1791
+ ---------------------------------------------------------------------
1792
+  (0.0ms) rollback transaction
1793
+  (0.0ms) begin transaction
1794
+ --------------------------------------------------------------------
1795
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1796
+ --------------------------------------------------------------------
1797
+  (0.1ms) rollback transaction
1798
+  (0.0ms) begin transaction
1799
+ --------------------------------------------------------------------------------
1800
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1801
+ --------------------------------------------------------------------------------
1802
+  (0.0ms) rollback transaction
1803
+  (0.0ms) begin transaction
1804
+ ---------------------------------------------------------
1805
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1806
+ ---------------------------------------------------------
1807
+  (0.1ms) rollback transaction
1808
+  (0.1ms) begin transaction
1809
+ ------------------------------------------------------------------
1810
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1811
+ ------------------------------------------------------------------
1812
+  (0.1ms) rollback transaction
1813
+  (0.0ms) begin transaction
1814
+ -------------------------------------------------------------
1815
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1816
+ -------------------------------------------------------------
1817
+  (0.1ms) rollback transaction
1818
+  (0.0ms) begin transaction
1819
+ ---------------------------------------------------------
1820
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1821
+ ---------------------------------------------------------
1822
+  (0.1ms) rollback transaction
1823
+  (0.1ms) begin transaction
1824
+ ------------------------------------------------------------
1825
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1826
+ ------------------------------------------------------------
1827
+  (0.0ms) rollback transaction
1828
+  (0.0ms) begin transaction
1829
+ -------------------------------------------------
1830
+ RailsImager::ImagesControllerTest: test_smartsize
1831
+ -------------------------------------------------
1832
+ Processing by RailsImager::ImagesController#show as HTML
1833
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1834
+ Rendered text template (0.0ms)
1835
+ Sent data (3.2ms)
1836
+ Completed 200 OK in 33ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1837
+  (0.1ms) rollback transaction
1838
+  (0.1ms) begin transaction
1839
+ ---------------------------
1840
+ RailsImagerTest: test_truth
1841
+ ---------------------------
1842
+  (0.0ms) rollback transaction
1843
+  (0.2ms) begin transaction
1844
+ ---------------------------------------------------------------------
1845
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1846
+ ---------------------------------------------------------------------
1847
+  (0.0ms) rollback transaction
1848
+  (0.0ms) begin transaction
1849
+ --------------------------------------------------------------------
1850
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1851
+ --------------------------------------------------------------------
1852
+  (0.1ms) rollback transaction
1853
+  (0.0ms) begin transaction
1854
+ --------------------------------------------------------------------------------
1855
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1856
+ --------------------------------------------------------------------------------
1857
+  (0.0ms) rollback transaction
1858
+  (0.0ms) begin transaction
1859
+ ---------------------------------------------------------
1860
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1861
+ ---------------------------------------------------------
1862
+  (0.1ms) rollback transaction
1863
+  (0.0ms) begin transaction
1864
+ ------------------------------------------------------------------
1865
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1866
+ ------------------------------------------------------------------
1867
+  (0.1ms) rollback transaction
1868
+  (0.0ms) begin transaction
1869
+ -------------------------------------------------------------
1870
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1871
+ -------------------------------------------------------------
1872
+  (0.1ms) rollback transaction
1873
+  (0.0ms) begin transaction
1874
+ ---------------------------------------------------------
1875
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1876
+ ---------------------------------------------------------
1877
+  (0.1ms) rollback transaction
1878
+  (0.0ms) begin transaction
1879
+ ------------------------------------------------------------
1880
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1881
+ ------------------------------------------------------------
1882
+  (0.0ms) rollback transaction
1883
+  (0.0ms) begin transaction
1884
+ -------------------------------------------------
1885
+ RailsImager::ImagesControllerTest: test_smartsize
1886
+ -------------------------------------------------
1887
+ Processing by RailsImager::ImagesController#show as HTML
1888
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1889
+ Rendered text template (0.0ms)
1890
+ Sent data (3.2ms)
1891
+ Completed 200 OK in 33ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1892
+  (0.1ms) rollback transaction
1893
+  (0.0ms) begin transaction
1894
+ ---------------------------
1895
+ RailsImagerTest: test_truth
1896
+ ---------------------------
1897
+  (0.0ms) rollback transaction
1898
+  (0.2ms) begin transaction
1899
+ ---------------------------------------------------------------------
1900
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1901
+ ---------------------------------------------------------------------
1902
+  (0.1ms) rollback transaction
1903
+  (0.0ms) begin transaction
1904
+ --------------------------------------------------------------------
1905
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1906
+ --------------------------------------------------------------------
1907
+  (0.1ms) rollback transaction
1908
+  (0.0ms) begin transaction
1909
+ --------------------------------------------------------------------------------
1910
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1911
+ --------------------------------------------------------------------------------
1912
+  (0.0ms) rollback transaction
1913
+  (0.0ms) begin transaction
1914
+ ---------------------------------------------------------
1915
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1916
+ ---------------------------------------------------------
1917
+  (0.1ms) rollback transaction
1918
+  (0.0ms) begin transaction
1919
+ ------------------------------------------------------------------
1920
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1921
+ ------------------------------------------------------------------
1922
+  (0.1ms) rollback transaction
1923
+  (0.0ms) begin transaction
1924
+ -------------------------------------------------------------
1925
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1926
+ -------------------------------------------------------------
1927
+  (0.1ms) rollback transaction
1928
+  (0.0ms) begin transaction
1929
+ ---------------------------------------------------------
1930
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1931
+ ---------------------------------------------------------
1932
+  (0.1ms) rollback transaction
1933
+  (0.0ms) begin transaction
1934
+ ------------------------------------------------------------
1935
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1936
+ ------------------------------------------------------------
1937
+  (0.0ms) rollback transaction
1938
+  (0.0ms) begin transaction
1939
+ -------------------------------------------------
1940
+ RailsImager::ImagesControllerTest: test_smartsize
1941
+ -------------------------------------------------
1942
+ Processing by RailsImager::ImagesController#show as HTML
1943
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1944
+ Rendered text template (0.0ms)
1945
+ Sent data (3.1ms)
1946
+ Completed 200 OK in 33ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1947
+  (0.1ms) rollback transaction
1948
+  (0.1ms) begin transaction
1949
+ ---------------------------
1950
+ RailsImagerTest: test_truth
1951
+ ---------------------------
1952
+  (0.0ms) rollback transaction
1953
+  (0.2ms) begin transaction
1954
+ ---------------------------------------------------------------------
1955
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
1956
+ ---------------------------------------------------------------------
1957
+  (0.0ms) rollback transaction
1958
+  (0.0ms) begin transaction
1959
+ --------------------------------------------------------------------
1960
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
1961
+ --------------------------------------------------------------------
1962
+  (0.1ms) rollback transaction
1963
+  (0.0ms) begin transaction
1964
+ --------------------------------------------------------------------------------
1965
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
1966
+ --------------------------------------------------------------------------------
1967
+  (0.0ms) rollback transaction
1968
+  (0.0ms) begin transaction
1969
+ ---------------------------------------------------------
1970
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
1971
+ ---------------------------------------------------------
1972
+  (0.1ms) rollback transaction
1973
+  (0.0ms) begin transaction
1974
+ ------------------------------------------------------------------
1975
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
1976
+ ------------------------------------------------------------------
1977
+  (0.1ms) rollback transaction
1978
+  (0.1ms) begin transaction
1979
+ -------------------------------------------------------------
1980
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
1981
+ -------------------------------------------------------------
1982
+  (0.1ms) rollback transaction
1983
+  (0.1ms) begin transaction
1984
+ ---------------------------------------------------------
1985
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
1986
+ ---------------------------------------------------------
1987
+  (0.1ms) rollback transaction
1988
+  (0.0ms) begin transaction
1989
+ ------------------------------------------------------------
1990
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
1991
+ ------------------------------------------------------------
1992
+  (0.0ms) rollback transaction
1993
+  (0.0ms) begin transaction
1994
+ -------------------------------------------------
1995
+ RailsImager::ImagesControllerTest: test_smartsize
1996
+ -------------------------------------------------
1997
+ Processing by RailsImager::ImagesController#show as HTML
1998
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
1999
+ Rendered text template (0.0ms)
2000
+ Sent data (3.1ms)
2001
+ Completed 200 OK in 34ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2002
+  (0.1ms) rollback transaction
2003
+  (0.0ms) begin transaction
2004
+ ---------------------------
2005
+ RailsImagerTest: test_truth
2006
+ ---------------------------
2007
+  (0.0ms) rollback transaction
2008
+  (0.2ms) begin transaction
2009
+ ---------------------------------------------------------------------
2010
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2011
+ ---------------------------------------------------------------------
2012
+  (0.0ms) rollback transaction
2013
+  (0.0ms) begin transaction
2014
+ --------------------------------------------------------------------
2015
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2016
+ --------------------------------------------------------------------
2017
+  (0.1ms) rollback transaction
2018
+  (0.0ms) begin transaction
2019
+ --------------------------------------------------------------------------------
2020
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2021
+ --------------------------------------------------------------------------------
2022
+  (0.0ms) rollback transaction
2023
+  (0.0ms) begin transaction
2024
+ ---------------------------------------------------------
2025
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2026
+ ---------------------------------------------------------
2027
+  (0.1ms) rollback transaction
2028
+  (0.1ms) begin transaction
2029
+ ------------------------------------------------------------------
2030
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2031
+ ------------------------------------------------------------------
2032
+  (0.1ms) rollback transaction
2033
+  (0.0ms) begin transaction
2034
+ -------------------------------------------------------------
2035
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2036
+ -------------------------------------------------------------
2037
+  (0.1ms) rollback transaction
2038
+  (0.0ms) begin transaction
2039
+ ---------------------------------------------------------
2040
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2041
+ ---------------------------------------------------------
2042
+  (0.1ms) rollback transaction
2043
+  (0.0ms) begin transaction
2044
+ ------------------------------------------------------------
2045
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2046
+ ------------------------------------------------------------
2047
+  (0.0ms) rollback transaction
2048
+  (0.0ms) begin transaction
2049
+ -------------------------------------------------
2050
+ RailsImager::ImagesControllerTest: test_smartsize
2051
+ -------------------------------------------------
2052
+ Processing by RailsImager::ImagesController#show as HTML
2053
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2054
+ Rendered text template (0.0ms)
2055
+ Sent data (3.2ms)
2056
+ Completed 200 OK in 34ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2057
+  (0.1ms) rollback transaction
2058
+  (0.1ms) begin transaction
2059
+ ---------------------------
2060
+ RailsImagerTest: test_truth
2061
+ ---------------------------
2062
+  (0.0ms) rollback transaction
2063
+  (0.3ms) begin transaction
2064
+ ---------------------------------------------------------------------
2065
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2066
+ ---------------------------------------------------------------------
2067
+  (0.1ms) rollback transaction
2068
+  (0.1ms) begin transaction
2069
+ --------------------------------------------------------------------
2070
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2071
+ --------------------------------------------------------------------
2072
+  (0.1ms) rollback transaction
2073
+  (0.0ms) begin transaction
2074
+ --------------------------------------------------------------------------------
2075
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2076
+ --------------------------------------------------------------------------------
2077
+  (0.0ms) rollback transaction
2078
+  (0.0ms) begin transaction
2079
+ ---------------------------------------------------------
2080
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2081
+ ---------------------------------------------------------
2082
+  (0.1ms) rollback transaction
2083
+  (0.0ms) begin transaction
2084
+ ------------------------------------------------------------------
2085
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2086
+ ------------------------------------------------------------------
2087
+  (0.1ms) rollback transaction
2088
+  (0.0ms) begin transaction
2089
+ -------------------------------------------------------------
2090
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2091
+ -------------------------------------------------------------
2092
+  (0.1ms) rollback transaction
2093
+  (0.0ms) begin transaction
2094
+ ---------------------------------------------------------
2095
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2096
+ ---------------------------------------------------------
2097
+  (0.1ms) rollback transaction
2098
+  (0.1ms) begin transaction
2099
+ ------------------------------------------------------------
2100
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2101
+ ------------------------------------------------------------
2102
+  (0.0ms) rollback transaction
2103
+  (0.1ms) begin transaction
2104
+ -------------------------------------------------
2105
+ RailsImager::ImagesControllerTest: test_smartsize
2106
+ -------------------------------------------------
2107
+ Processing by RailsImager::ImagesController#show as HTML
2108
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2109
+ Rendered text template (0.0ms)
2110
+ Sent data (3.0ms)
2111
+ Completed 200 OK in 35ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2112
+  (0.1ms) rollback transaction
2113
+  (0.0ms) begin transaction
2114
+ ---------------------------
2115
+ RailsImagerTest: test_truth
2116
+ ---------------------------
2117
+  (0.0ms) rollback transaction
2118
+  (0.2ms) begin transaction
2119
+ ---------------------------------------------------------------------
2120
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2121
+ ---------------------------------------------------------------------
2122
+  (0.0ms) rollback transaction
2123
+  (0.1ms) begin transaction
2124
+ --------------------------------------------------------------------
2125
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2126
+ --------------------------------------------------------------------
2127
+  (0.1ms) rollback transaction
2128
+  (0.0ms) begin transaction
2129
+ --------------------------------------------------------------------------------
2130
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2131
+ --------------------------------------------------------------------------------
2132
+  (0.0ms) rollback transaction
2133
+  (0.0ms) begin transaction
2134
+ ---------------------------------------------------------
2135
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2136
+ ---------------------------------------------------------
2137
+  (0.1ms) rollback transaction
2138
+  (0.0ms) begin transaction
2139
+ ------------------------------------------------------------------
2140
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2141
+ ------------------------------------------------------------------
2142
+  (0.1ms) rollback transaction
2143
+  (0.0ms) begin transaction
2144
+ -------------------------------------------------------------
2145
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2146
+ -------------------------------------------------------------
2147
+  (0.1ms) rollback transaction
2148
+  (0.0ms) begin transaction
2149
+ ---------------------------------------------------------
2150
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2151
+ ---------------------------------------------------------
2152
+  (0.1ms) rollback transaction
2153
+  (0.0ms) begin transaction
2154
+ ------------------------------------------------------------
2155
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2156
+ ------------------------------------------------------------
2157
+  (0.1ms) rollback transaction
2158
+  (0.0ms) begin transaction
2159
+ -------------------------------------------------
2160
+ RailsImager::ImagesControllerTest: test_smartsize
2161
+ -------------------------------------------------
2162
+ Processing by RailsImager::ImagesController#show as HTML
2163
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2164
+ Rendered text template (0.0ms)
2165
+ Sent data (3.2ms)
2166
+ Completed 200 OK in 34ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2167
+  (0.1ms) rollback transaction
2168
+  (0.0ms) begin transaction
2169
+ ---------------------------
2170
+ RailsImagerTest: test_truth
2171
+ ---------------------------
2172
+  (0.1ms) rollback transaction
2173
+  (0.2ms) begin transaction
2174
+ ---------------------------------------------------------------------
2175
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2176
+ ---------------------------------------------------------------------
2177
+  (0.1ms) rollback transaction
2178
+  (0.0ms) begin transaction
2179
+ --------------------------------------------------------------------
2180
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2181
+ --------------------------------------------------------------------
2182
+  (0.1ms) rollback transaction
2183
+  (0.1ms) begin transaction
2184
+ --------------------------------------------------------------------------------
2185
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2186
+ --------------------------------------------------------------------------------
2187
+  (0.0ms) rollback transaction
2188
+  (0.0ms) begin transaction
2189
+ ---------------------------------------------------------
2190
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2191
+ ---------------------------------------------------------
2192
+  (0.1ms) rollback transaction
2193
+  (0.0ms) begin transaction
2194
+ ------------------------------------------------------------------
2195
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2196
+ ------------------------------------------------------------------
2197
+  (0.1ms) rollback transaction
2198
+  (0.0ms) begin transaction
2199
+ -------------------------------------------------------------
2200
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2201
+ -------------------------------------------------------------
2202
+  (0.1ms) rollback transaction
2203
+  (0.0ms) begin transaction
2204
+ ---------------------------------------------------------
2205
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2206
+ ---------------------------------------------------------
2207
+  (0.1ms) rollback transaction
2208
+  (0.0ms) begin transaction
2209
+ ------------------------------------------------------------
2210
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2211
+ ------------------------------------------------------------
2212
+  (0.1ms) rollback transaction
2213
+  (0.0ms) begin transaction
2214
+ -------------------------------------------------
2215
+ RailsImager::ImagesControllerTest: test_smartsize
2216
+ -------------------------------------------------
2217
+ Processing by RailsImager::ImagesController#show as HTML
2218
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2219
+ Rendered text template (0.0ms)
2220
+ Sent data (3.3ms)
2221
+ Completed 200 OK in 41ms (Views: 3.1ms | ActiveRecord: 0.0ms)
2222
+  (0.1ms) rollback transaction
2223
+  (0.0ms) begin transaction
2224
+ ---------------------------
2225
+ RailsImagerTest: test_truth
2226
+ ---------------------------
2227
+  (0.1ms) rollback transaction
2228
+  (0.3ms) begin transaction
2229
+ ---------------------------------------------------------------------
2230
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2231
+ ---------------------------------------------------------------------
2232
+  (0.1ms) rollback transaction
2233
+  (0.1ms) begin transaction
2234
+ --------------------------------------------------------------------
2235
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2236
+ --------------------------------------------------------------------
2237
+  (0.1ms) rollback transaction
2238
+  (0.0ms) begin transaction
2239
+ --------------------------------------------------------------------------------
2240
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2241
+ --------------------------------------------------------------------------------
2242
+  (0.0ms) rollback transaction
2243
+  (0.0ms) begin transaction
2244
+ ---------------------------------------------------------
2245
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2246
+ ---------------------------------------------------------
2247
+  (0.1ms) rollback transaction
2248
+  (0.0ms) begin transaction
2249
+ ------------------------------------------------------------------
2250
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2251
+ ------------------------------------------------------------------
2252
+  (0.1ms) rollback transaction
2253
+  (0.0ms) begin transaction
2254
+ -------------------------------------------------------------
2255
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2256
+ -------------------------------------------------------------
2257
+  (0.1ms) rollback transaction
2258
+  (0.0ms) begin transaction
2259
+ ---------------------------------------------------------
2260
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2261
+ ---------------------------------------------------------
2262
+  (0.1ms) rollback transaction
2263
+  (0.0ms) begin transaction
2264
+ ------------------------------------------------------------
2265
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2266
+ ------------------------------------------------------------
2267
+  (0.1ms) rollback transaction
2268
+  (0.0ms) begin transaction
2269
+ -------------------------------------------------
2270
+ RailsImager::ImagesControllerTest: test_smartsize
2271
+ -------------------------------------------------
2272
+ Processing by RailsImager::ImagesController#show as HTML
2273
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2274
+ Rendered text template (0.0ms)
2275
+ Sent data (3.1ms)
2276
+ Completed 200 OK in 33ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2277
+  (0.1ms) rollback transaction
2278
+  (0.0ms) begin transaction
2279
+ ---------------------------
2280
+ RailsImagerTest: test_truth
2281
+ ---------------------------
2282
+  (0.0ms) rollback transaction
2283
+  (0.3ms) begin transaction
2284
+ ---------------------------------------------------------------------
2285
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2286
+ ---------------------------------------------------------------------
2287
+  (0.0ms) rollback transaction
2288
+  (0.0ms) begin transaction
2289
+ --------------------------------------------------------------------
2290
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2291
+ --------------------------------------------------------------------
2292
+  (0.1ms) rollback transaction
2293
+  (0.0ms) begin transaction
2294
+ --------------------------------------------------------------------------------
2295
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2296
+ --------------------------------------------------------------------------------
2297
+  (0.0ms) rollback transaction
2298
+  (0.0ms) begin transaction
2299
+ ---------------------------------------------------------
2300
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2301
+ ---------------------------------------------------------
2302
+  (0.1ms) rollback transaction
2303
+  (0.0ms) begin transaction
2304
+ ------------------------------------------------------------------
2305
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2306
+ ------------------------------------------------------------------
2307
+  (0.1ms) rollback transaction
2308
+  (0.0ms) begin transaction
2309
+ -------------------------------------------------------------
2310
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2311
+ -------------------------------------------------------------
2312
+  (0.1ms) rollback transaction
2313
+  (0.0ms) begin transaction
2314
+ ---------------------------------------------------------
2315
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2316
+ ---------------------------------------------------------
2317
+  (0.1ms) rollback transaction
2318
+  (0.0ms) begin transaction
2319
+ ------------------------------------------------------------
2320
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2321
+ ------------------------------------------------------------
2322
+  (0.1ms) rollback transaction
2323
+  (0.0ms) begin transaction
2324
+ -------------------------------------------------
2325
+ RailsImager::ImagesControllerTest: test_smartsize
2326
+ -------------------------------------------------
2327
+ Processing by RailsImager::ImagesController#show as HTML
2328
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2329
+ Rendered text template (0.0ms)
2330
+ Sent data (3.1ms)
2331
+ Completed 200 OK in 34ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2332
+  (0.1ms) rollback transaction
2333
+  (0.0ms) begin transaction
2334
+ ---------------------------
2335
+ RailsImagerTest: test_truth
2336
+ ---------------------------
2337
+  (0.0ms) rollback transaction
2338
+  (0.2ms) begin transaction
2339
+ ---------------------------------------------------------------------
2340
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2341
+ ---------------------------------------------------------------------
2342
+  (0.0ms) rollback transaction
2343
+  (0.0ms) begin transaction
2344
+ --------------------------------------------------------------------
2345
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2346
+ --------------------------------------------------------------------
2347
+  (0.1ms) rollback transaction
2348
+  (0.0ms) begin transaction
2349
+ --------------------------------------------------------------------------------
2350
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2351
+ --------------------------------------------------------------------------------
2352
+  (0.0ms) rollback transaction
2353
+  (0.0ms) begin transaction
2354
+ ---------------------------------------------------------
2355
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2356
+ ---------------------------------------------------------
2357
+  (0.1ms) rollback transaction
2358
+  (0.0ms) begin transaction
2359
+ ------------------------------------------------------------------
2360
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2361
+ ------------------------------------------------------------------
2362
+  (0.1ms) rollback transaction
2363
+  (0.0ms) begin transaction
2364
+ -------------------------------------------------------------
2365
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2366
+ -------------------------------------------------------------
2367
+  (0.1ms) rollback transaction
2368
+  (0.0ms) begin transaction
2369
+ ---------------------------------------------------------
2370
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2371
+ ---------------------------------------------------------
2372
+  (0.1ms) rollback transaction
2373
+  (0.0ms) begin transaction
2374
+ ------------------------------------------------------------
2375
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2376
+ ------------------------------------------------------------
2377
+  (0.1ms) rollback transaction
2378
+  (0.0ms) begin transaction
2379
+ -------------------------------------------------
2380
+ RailsImager::ImagesControllerTest: test_smartsize
2381
+ -------------------------------------------------
2382
+ Processing by RailsImager::ImagesController#show as HTML
2383
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2384
+ Rendered text template (0.0ms)
2385
+ Sent data (3.2ms)
2386
+ Completed 200 OK in 34ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2387
+  (0.1ms) rollback transaction
2388
+  (0.0ms) begin transaction
2389
+ ---------------------------
2390
+ RailsImagerTest: test_truth
2391
+ ---------------------------
2392
+  (0.0ms) rollback transaction
2393
+  (0.3ms) begin transaction
2394
+ ---------------------------------------------------------------------
2395
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2396
+ ---------------------------------------------------------------------
2397
+  (0.0ms) rollback transaction
2398
+  (0.0ms) begin transaction
2399
+ --------------------------------------------------------------------
2400
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2401
+ --------------------------------------------------------------------
2402
+  (0.1ms) rollback transaction
2403
+  (0.0ms) begin transaction
2404
+ --------------------------------------------------------------------------------
2405
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2406
+ --------------------------------------------------------------------------------
2407
+  (0.0ms) rollback transaction
2408
+  (0.0ms) begin transaction
2409
+ ---------------------------------------------------------
2410
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2411
+ ---------------------------------------------------------
2412
+  (0.1ms) rollback transaction
2413
+  (0.0ms) begin transaction
2414
+ ------------------------------------------------------------------
2415
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2416
+ ------------------------------------------------------------------
2417
+  (0.1ms) rollback transaction
2418
+  (0.0ms) begin transaction
2419
+ -------------------------------------------------------------
2420
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2421
+ -------------------------------------------------------------
2422
+  (0.1ms) rollback transaction
2423
+  (0.0ms) begin transaction
2424
+ ---------------------------------------------------------
2425
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2426
+ ---------------------------------------------------------
2427
+  (0.1ms) rollback transaction
2428
+  (0.0ms) begin transaction
2429
+ ------------------------------------------------------------
2430
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2431
+ ------------------------------------------------------------
2432
+  (0.1ms) rollback transaction
2433
+  (0.0ms) begin transaction
2434
+ -------------------------------------------------
2435
+ RailsImager::ImagesControllerTest: test_smartsize
2436
+ -------------------------------------------------
2437
+ Processing by RailsImager::ImagesController#show as HTML
2438
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2439
+ Rendered text template (0.0ms)
2440
+ Sent data (3.2ms)
2441
+ Completed 200 OK in 36ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2442
+  (0.1ms) rollback transaction
2443
+  (0.1ms) begin transaction
2444
+ ---------------------------
2445
+ RailsImagerTest: test_truth
2446
+ ---------------------------
2447
+  (0.1ms) rollback transaction
2448
+  (0.2ms) begin transaction
2449
+ -------------------------------------------------
2450
+ RailsImager::ImagesControllerTest: test_smartsize
2451
+ -------------------------------------------------
2452
+ Processing by RailsImager::ImagesController#show as HTML
2453
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2454
+ Rendered text template (0.0ms)
2455
+ Sent data (3.0ms)
2456
+ Completed 200 OK in 42ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2457
+  (0.1ms) rollback transaction
2458
+  (0.3ms) begin transaction
2459
+ ------------------------------------------------------
2460
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2461
+ ------------------------------------------------------
2462
+  (0.1ms) rollback transaction
2463
+  (0.2ms) begin transaction
2464
+ ------------------------------------------------------
2465
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2466
+ ------------------------------------------------------
2467
+  (0.1ms) rollback transaction
2468
+  (0.2ms) begin transaction
2469
+ ------------------------------------------------------
2470
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2471
+ ------------------------------------------------------
2472
+  (0.1ms) rollback transaction
2473
+  (0.2ms) begin transaction
2474
+ ------------------------------------------------------
2475
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2476
+ ------------------------------------------------------
2477
+  (0.1ms) rollback transaction
2478
+  (0.2ms) begin transaction
2479
+ ------------------------------------------------------
2480
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2481
+ ------------------------------------------------------
2482
+  (0.1ms) rollback transaction
2483
+  (0.2ms) begin transaction
2484
+ ------------------------------------------------------
2485
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2486
+ ------------------------------------------------------
2487
+  (0.1ms) rollback transaction
2488
+  (0.2ms) begin transaction
2489
+ ------------------------------------------------------
2490
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2491
+ ------------------------------------------------------
2492
+  (0.1ms) rollback transaction
2493
+  (0.2ms) begin transaction
2494
+ ------------------------------------------------------
2495
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2496
+ ------------------------------------------------------
2497
+  (0.1ms) rollback transaction
2498
+  (0.2ms) begin transaction
2499
+ ------------------------------------------------------
2500
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2501
+ ------------------------------------------------------
2502
+  (0.1ms) rollback transaction
2503
+  (0.3ms) begin transaction
2504
+ ------------------------------------------------------
2505
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2506
+ ------------------------------------------------------
2507
+  (0.1ms) rollback transaction
2508
+  (0.2ms) begin transaction
2509
+ ------------------------------------------------------
2510
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2511
+ ------------------------------------------------------
2512
+  (0.1ms) rollback transaction
2513
+  (0.2ms) begin transaction
2514
+ ------------------------------------------------------
2515
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2516
+ ------------------------------------------------------
2517
+  (0.1ms) rollback transaction
2518
+  (0.2ms) begin transaction
2519
+ ------------------------------------------------------
2520
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2521
+ ------------------------------------------------------
2522
+  (0.0ms) rollback transaction
2523
+  (0.3ms) begin transaction
2524
+ ------------------------------------------------------
2525
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2526
+ ------------------------------------------------------
2527
+  (0.1ms) rollback transaction
2528
+  (0.2ms) begin transaction
2529
+ ------------------------------------------------------
2530
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2531
+ ------------------------------------------------------
2532
+  (0.1ms) rollback transaction
2533
+  (0.2ms) begin transaction
2534
+ ------------------------------------------------------
2535
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2536
+ ------------------------------------------------------
2537
+  (0.1ms) rollback transaction
2538
+  (0.2ms) begin transaction
2539
+ ------------------------------------------------------
2540
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2541
+ ------------------------------------------------------
2542
+  (0.1ms) rollback transaction
2543
+  (0.3ms) begin transaction
2544
+ ------------------------------------------------------
2545
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2546
+ ------------------------------------------------------
2547
+  (0.1ms) rollback transaction
2548
+  (0.3ms) begin transaction
2549
+ ------------------------------------------------------
2550
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2551
+ ------------------------------------------------------
2552
+  (0.1ms) rollback transaction
2553
+  (0.3ms) begin transaction
2554
+ ------------------------------------------------------
2555
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2556
+ ------------------------------------------------------
2557
+  (0.1ms) rollback transaction
2558
+  (0.2ms) begin transaction
2559
+ ------------------------------------------------------
2560
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2561
+ ------------------------------------------------------
2562
+  (0.1ms) rollback transaction
2563
+  (0.2ms) begin transaction
2564
+ ------------------------------------------------------
2565
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2566
+ ------------------------------------------------------
2567
+  (0.1ms) rollback transaction
2568
+  (0.2ms) begin transaction
2569
+ ------------------------------------------------------
2570
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2571
+ ------------------------------------------------------
2572
+  (0.1ms) rollback transaction
2573
+  (0.2ms) begin transaction
2574
+ ------------------------------------------------------
2575
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2576
+ ------------------------------------------------------
2577
+  (0.1ms) rollback transaction
2578
+  (0.2ms) begin transaction
2579
+ ------------------------------------------------------
2580
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2581
+ ------------------------------------------------------
2582
+  (0.1ms) rollback transaction
2583
+  (0.2ms) begin transaction
2584
+ ------------------------------------------------------
2585
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2586
+ ------------------------------------------------------
2587
+  (0.1ms) rollback transaction
2588
+  (0.3ms) begin transaction
2589
+ ------------------------------------------------------
2590
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2591
+ ------------------------------------------------------
2592
+  (0.1ms) rollback transaction
2593
+  (0.2ms) begin transaction
2594
+ ------------------------------------------------------
2595
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2596
+ ------------------------------------------------------
2597
+  (0.1ms) rollback transaction
2598
+  (0.2ms) begin transaction
2599
+ ------------------------------------------------------
2600
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2601
+ ------------------------------------------------------
2602
+  (0.0ms) rollback transaction
2603
+  (0.2ms) begin transaction
2604
+ ------------------------------------------------------
2605
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2606
+ ------------------------------------------------------
2607
+  (0.1ms) rollback transaction
2608
+  (0.2ms) begin transaction
2609
+ ------------------------------------------------------
2610
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2611
+ ------------------------------------------------------
2612
+  (0.1ms) rollback transaction
2613
+  (0.3ms) begin transaction
2614
+ ------------------------------------------------------
2615
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2616
+ ------------------------------------------------------
2617
+  (0.1ms) rollback transaction
2618
+  (0.3ms) begin transaction
2619
+ ------------------------------------------------------
2620
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2621
+ ------------------------------------------------------
2622
+  (0.1ms) rollback transaction
2623
+  (0.2ms) begin transaction
2624
+ ------------------------------------------------------
2625
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2626
+ ------------------------------------------------------
2627
+  (0.0ms) rollback transaction
2628
+  (0.2ms) begin transaction
2629
+ ------------------------------------------------------
2630
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2631
+ ------------------------------------------------------
2632
+  (0.1ms) rollback transaction
2633
+  (0.3ms) begin transaction
2634
+ ---------------------------------------------------------------------
2635
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2636
+ ---------------------------------------------------------------------
2637
+  (0.0ms) rollback transaction
2638
+  (0.1ms) begin transaction
2639
+ --------------------------------------------------------------------
2640
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2641
+ --------------------------------------------------------------------
2642
+  (0.1ms) rollback transaction
2643
+  (0.0ms) begin transaction
2644
+ --------------------------------------------------------------------------------
2645
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2646
+ --------------------------------------------------------------------------------
2647
+  (0.0ms) rollback transaction
2648
+  (0.0ms) begin transaction
2649
+ ---------------------------------------------------------
2650
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2651
+ ---------------------------------------------------------
2652
+  (0.1ms) rollback transaction
2653
+  (0.0ms) begin transaction
2654
+ ------------------------------------------------------------------
2655
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2656
+ ------------------------------------------------------------------
2657
+  (0.1ms) rollback transaction
2658
+  (0.0ms) begin transaction
2659
+ -------------------------------------------------------------
2660
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2661
+ -------------------------------------------------------------
2662
+  (0.1ms) rollback transaction
2663
+  (0.0ms) begin transaction
2664
+ ---------------------------------------------------------
2665
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2666
+ ---------------------------------------------------------
2667
+  (0.1ms) rollback transaction
2668
+  (0.0ms) begin transaction
2669
+ ------------------------------------------------------------
2670
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2671
+ ------------------------------------------------------------
2672
+  (0.0ms) rollback transaction
2673
+  (0.0ms) begin transaction
2674
+ -------------------------------------------------
2675
+ RailsImager::ImagesControllerTest: test_smartsize
2676
+ -------------------------------------------------
2677
+ Processing by RailsImager::ImagesController#show as HTML
2678
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2679
+ Rendered text template (0.0ms)
2680
+ Sent data (3.1ms)
2681
+ Completed 200 OK in 34ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2682
+  (0.1ms) rollback transaction
2683
+  (0.1ms) begin transaction
2684
+ ------------------------------------------------------
2685
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2686
+ ------------------------------------------------------
2687
+  (0.0ms) rollback transaction
2688
+  (0.0ms) begin transaction
2689
+ ---------------------------
2690
+ RailsImagerTest: test_truth
2691
+ ---------------------------
2692
+  (0.1ms) rollback transaction
2693
+  (0.2ms) begin transaction
2694
+ ---------------------------------------------------------------------
2695
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2696
+ ---------------------------------------------------------------------
2697
+  (0.0ms) rollback transaction
2698
+  (0.1ms) begin transaction
2699
+ --------------------------------------------------------------------
2700
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2701
+ --------------------------------------------------------------------
2702
+  (0.1ms) rollback transaction
2703
+  (0.0ms) begin transaction
2704
+ --------------------------------------------------------------------------------
2705
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2706
+ --------------------------------------------------------------------------------
2707
+  (0.0ms) rollback transaction
2708
+  (0.0ms) begin transaction
2709
+ ---------------------------------------------------------
2710
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2711
+ ---------------------------------------------------------
2712
+  (0.1ms) rollback transaction
2713
+  (0.0ms) begin transaction
2714
+ ------------------------------------------------------------------
2715
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2716
+ ------------------------------------------------------------------
2717
+  (0.1ms) rollback transaction
2718
+  (0.0ms) begin transaction
2719
+ -------------------------------------------------------------
2720
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2721
+ -------------------------------------------------------------
2722
+  (0.1ms) rollback transaction
2723
+  (0.0ms) begin transaction
2724
+ ---------------------------------------------------------
2725
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2726
+ ---------------------------------------------------------
2727
+  (0.1ms) rollback transaction
2728
+  (0.0ms) begin transaction
2729
+ ------------------------------------------------------------
2730
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2731
+ ------------------------------------------------------------
2732
+  (0.0ms) rollback transaction
2733
+  (0.0ms) begin transaction
2734
+ -------------------------------------------------
2735
+ RailsImager::ImagesControllerTest: test_smartsize
2736
+ -------------------------------------------------
2737
+ Processing by RailsImager::ImagesController#show as HTML
2738
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2739
+ Rendered text template (0.0ms)
2740
+ Sent data (3.5ms)
2741
+ Completed 200 OK in 34ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2742
+  (0.1ms) rollback transaction
2743
+  (0.1ms) begin transaction
2744
+ ------------------------------------------------------
2745
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2746
+ ------------------------------------------------------
2747
+  (0.0ms) rollback transaction
2748
+  (0.0ms) begin transaction
2749
+ ---------------------------
2750
+ RailsImagerTest: test_truth
2751
+ ---------------------------
2752
+  (0.0ms) rollback transaction
2753
+  (0.2ms) begin transaction
2754
+ ---------------------------------------------------------------------
2755
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2756
+ ---------------------------------------------------------------------
2757
+  (0.0ms) rollback transaction
2758
+  (0.0ms) begin transaction
2759
+ --------------------------------------------------------------------
2760
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2761
+ --------------------------------------------------------------------
2762
+  (0.1ms) rollback transaction
2763
+  (0.0ms) begin transaction
2764
+ --------------------------------------------------------------------------------
2765
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2766
+ --------------------------------------------------------------------------------
2767
+  (0.0ms) rollback transaction
2768
+  (0.0ms) begin transaction
2769
+ ---------------------------------------------------------
2770
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2771
+ ---------------------------------------------------------
2772
+  (0.1ms) rollback transaction
2773
+  (0.0ms) begin transaction
2774
+ ------------------------------------------------------------------
2775
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2776
+ ------------------------------------------------------------------
2777
+  (0.1ms) rollback transaction
2778
+  (0.0ms) begin transaction
2779
+ -------------------------------------------------------------
2780
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2781
+ -------------------------------------------------------------
2782
+  (0.1ms) rollback transaction
2783
+  (0.0ms) begin transaction
2784
+ ---------------------------------------------------------
2785
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2786
+ ---------------------------------------------------------
2787
+  (0.1ms) rollback transaction
2788
+  (0.0ms) begin transaction
2789
+ ------------------------------------------------------------
2790
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2791
+ ------------------------------------------------------------
2792
+  (0.0ms) rollback transaction
2793
+  (0.0ms) begin transaction
2794
+ -------------------------------------------------
2795
+ RailsImager::ImagesControllerTest: test_smartsize
2796
+ -------------------------------------------------
2797
+ Processing by RailsImager::ImagesController#show as HTML
2798
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2799
+ Rendered text template (0.0ms)
2800
+ Sent data (3.1ms)
2801
+ Completed 200 OK in 33ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2802
+  (0.1ms) rollback transaction
2803
+  (0.1ms) begin transaction
2804
+ ------------------------------------------------------
2805
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2806
+ ------------------------------------------------------
2807
+  (0.1ms) rollback transaction
2808
+  (0.0ms) begin transaction
2809
+ ---------------------------
2810
+ RailsImagerTest: test_truth
2811
+ ---------------------------
2812
+  (0.0ms) rollback transaction
2813
+  (0.2ms) begin transaction
2814
+ ---------------------------------------------------------------------
2815
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2816
+ ---------------------------------------------------------------------
2817
+  (0.0ms) rollback transaction
2818
+  (0.0ms) begin transaction
2819
+ --------------------------------------------------------------------
2820
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2821
+ --------------------------------------------------------------------
2822
+  (0.1ms) rollback transaction
2823
+  (0.0ms) begin transaction
2824
+ --------------------------------------------------------------------------------
2825
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2826
+ --------------------------------------------------------------------------------
2827
+  (0.0ms) rollback transaction
2828
+  (0.0ms) begin transaction
2829
+ ---------------------------------------------------------
2830
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2831
+ ---------------------------------------------------------
2832
+  (0.1ms) rollback transaction
2833
+  (0.0ms) begin transaction
2834
+ ------------------------------------------------------------------
2835
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2836
+ ------------------------------------------------------------------
2837
+  (0.1ms) rollback transaction
2838
+  (0.0ms) begin transaction
2839
+ -------------------------------------------------------------
2840
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2841
+ -------------------------------------------------------------
2842
+  (0.1ms) rollback transaction
2843
+  (0.0ms) begin transaction
2844
+ ---------------------------------------------------------
2845
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2846
+ ---------------------------------------------------------
2847
+  (0.1ms) rollback transaction
2848
+  (0.0ms) begin transaction
2849
+ ------------------------------------------------------------
2850
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2851
+ ------------------------------------------------------------
2852
+  (0.0ms) rollback transaction
2853
+  (0.0ms) begin transaction
2854
+ -------------------------------------------------
2855
+ RailsImager::ImagesControllerTest: test_smartsize
2856
+ -------------------------------------------------
2857
+ Processing by RailsImager::ImagesController#show as HTML
2858
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2859
+ Rendered text template (0.0ms)
2860
+ Sent data (3.1ms)
2861
+ Completed 200 OK in 33ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2862
+  (0.1ms) rollback transaction
2863
+  (0.1ms) begin transaction
2864
+ ------------------------------------------------------
2865
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2866
+ ------------------------------------------------------
2867
+  (0.0ms) rollback transaction
2868
+  (0.0ms) begin transaction
2869
+ ---------------------------
2870
+ RailsImagerTest: test_truth
2871
+ ---------------------------
2872
+  (0.0ms) rollback transaction
2873
+  (0.2ms) begin transaction
2874
+ ---------------------------------------------------------------------
2875
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2876
+ ---------------------------------------------------------------------
2877
+  (0.0ms) rollback transaction
2878
+  (0.0ms) begin transaction
2879
+ --------------------------------------------------------------------
2880
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2881
+ --------------------------------------------------------------------
2882
+  (0.1ms) rollback transaction
2883
+  (0.0ms) begin transaction
2884
+ --------------------------------------------------------------------------------
2885
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2886
+ --------------------------------------------------------------------------------
2887
+  (0.0ms) rollback transaction
2888
+  (0.0ms) begin transaction
2889
+ ---------------------------------------------------------
2890
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2891
+ ---------------------------------------------------------
2892
+  (0.1ms) rollback transaction
2893
+  (0.0ms) begin transaction
2894
+ ------------------------------------------------------------------
2895
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2896
+ ------------------------------------------------------------------
2897
+  (0.1ms) rollback transaction
2898
+  (0.0ms) begin transaction
2899
+ -------------------------------------------------------------
2900
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2901
+ -------------------------------------------------------------
2902
+  (0.1ms) rollback transaction
2903
+  (0.0ms) begin transaction
2904
+ ---------------------------------------------------------
2905
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2906
+ ---------------------------------------------------------
2907
+  (0.1ms) rollback transaction
2908
+  (0.0ms) begin transaction
2909
+ ------------------------------------------------------------
2910
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2911
+ ------------------------------------------------------------
2912
+  (0.1ms) rollback transaction
2913
+  (0.0ms) begin transaction
2914
+ -------------------------------------------------
2915
+ RailsImager::ImagesControllerTest: test_smartsize
2916
+ -------------------------------------------------
2917
+ Processing by RailsImager::ImagesController#show as HTML
2918
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2919
+ Rendered text template (0.0ms)
2920
+ Sent data (3.2ms)
2921
+ Completed 200 OK in 33ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2922
+  (0.1ms) rollback transaction
2923
+  (0.1ms) begin transaction
2924
+ ------------------------------------------------------
2925
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2926
+ ------------------------------------------------------
2927
+  (0.0ms) rollback transaction
2928
+  (0.0ms) begin transaction
2929
+ ---------------------------
2930
+ RailsImagerTest: test_truth
2931
+ ---------------------------
2932
+  (0.0ms) rollback transaction
2933
+  (0.2ms) begin transaction
2934
+ ---------------------------------------------------------------------
2935
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2936
+ ---------------------------------------------------------------------
2937
+  (0.0ms) rollback transaction
2938
+  (0.0ms) begin transaction
2939
+ --------------------------------------------------------------------
2940
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
2941
+ --------------------------------------------------------------------
2942
+  (0.1ms) rollback transaction
2943
+  (0.0ms) begin transaction
2944
+ --------------------------------------------------------------------------------
2945
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
2946
+ --------------------------------------------------------------------------------
2947
+  (0.0ms) rollback transaction
2948
+  (0.0ms) begin transaction
2949
+ ---------------------------------------------------------
2950
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
2951
+ ---------------------------------------------------------
2952
+  (0.1ms) rollback transaction
2953
+  (0.0ms) begin transaction
2954
+ ------------------------------------------------------------------
2955
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
2956
+ ------------------------------------------------------------------
2957
+  (0.1ms) rollback transaction
2958
+  (0.0ms) begin transaction
2959
+ -------------------------------------------------------------
2960
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
2961
+ -------------------------------------------------------------
2962
+  (0.1ms) rollback transaction
2963
+  (0.0ms) begin transaction
2964
+ ---------------------------------------------------------
2965
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
2966
+ ---------------------------------------------------------
2967
+  (0.1ms) rollback transaction
2968
+  (0.0ms) begin transaction
2969
+ ------------------------------------------------------------
2970
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
2971
+ ------------------------------------------------------------
2972
+  (0.1ms) rollback transaction
2973
+  (0.0ms) begin transaction
2974
+ -------------------------------------------------
2975
+ RailsImager::ImagesControllerTest: test_smartsize
2976
+ -------------------------------------------------
2977
+ Processing by RailsImager::ImagesController#show as HTML
2978
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
2979
+ Rendered text template (0.0ms)
2980
+ Sent data (3.1ms)
2981
+ Completed 200 OK in 35ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2982
+  (0.1ms) rollback transaction
2983
+  (0.1ms) begin transaction
2984
+ ------------------------------------------------------
2985
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
2986
+ ------------------------------------------------------
2987
+  (0.0ms) rollback transaction
2988
+  (0.1ms) begin transaction
2989
+ ---------------------------
2990
+ RailsImagerTest: test_truth
2991
+ ---------------------------
2992
+  (0.0ms) rollback transaction
2993
+  (0.2ms) begin transaction
2994
+ ---------------------------------------------------------------------
2995
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
2996
+ ---------------------------------------------------------------------
2997
+  (0.0ms) rollback transaction
2998
+  (0.0ms) begin transaction
2999
+ --------------------------------------------------------------------
3000
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
3001
+ --------------------------------------------------------------------
3002
+  (0.1ms) rollback transaction
3003
+  (0.0ms) begin transaction
3004
+ --------------------------------------------------------------------------------
3005
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
3006
+ --------------------------------------------------------------------------------
3007
+  (0.0ms) rollback transaction
3008
+  (0.0ms) begin transaction
3009
+ ---------------------------------------------------------
3010
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
3011
+ ---------------------------------------------------------
3012
+  (0.1ms) rollback transaction
3013
+  (0.0ms) begin transaction
3014
+ ------------------------------------------------------------------
3015
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
3016
+ ------------------------------------------------------------------
3017
+  (0.1ms) rollback transaction
3018
+  (0.0ms) begin transaction
3019
+ -------------------------------------------------------------
3020
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
3021
+ -------------------------------------------------------------
3022
+  (0.1ms) rollback transaction
3023
+  (0.1ms) begin transaction
3024
+ ---------------------------------------------------------
3025
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
3026
+ ---------------------------------------------------------
3027
+  (0.1ms) rollback transaction
3028
+  (0.0ms) begin transaction
3029
+ ------------------------------------------------------------
3030
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
3031
+ ------------------------------------------------------------
3032
+  (0.1ms) rollback transaction
3033
+  (0.0ms) begin transaction
3034
+ -------------------------------------------------
3035
+ RailsImager::ImagesControllerTest: test_smartsize
3036
+ -------------------------------------------------
3037
+ Processing by RailsImager::ImagesController#show as HTML
3038
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3039
+ Rendered text template (0.0ms)
3040
+ Sent data (3.2ms)
3041
+ Completed 200 OK in 33ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3042
+  (0.1ms) rollback transaction
3043
+  (0.1ms) begin transaction
3044
+ ------------------------------------------------------
3045
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
3046
+ ------------------------------------------------------
3047
+  (0.0ms) rollback transaction
3048
+  (0.0ms) begin transaction
3049
+ ---------------------------
3050
+ RailsImagerTest: test_truth
3051
+ ---------------------------
3052
+  (0.0ms) rollback transaction
3053
+  (0.3ms) begin transaction
3054
+ ---------------------------------------------------------
3055
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3056
+ ---------------------------------------------------------
3057
+ Processing by RailsImager::ImagesController#show as HTML
3058
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3059
+ Rendered text template (0.0ms)
3060
+ Sent data (3.2ms)
3061
+ Completed 200 OK in 102ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3062
+  (0.1ms) rollback transaction
3063
+  (0.1ms) begin transaction
3064
+ -------------------------------------------------
3065
+ RailsImager::ImagesControllerTest: test_smartsize
3066
+ -------------------------------------------------
3067
+ Processing by RailsImager::ImagesController#show as HTML
3068
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3069
+ Sent data (0.4ms)
3070
+ Completed 200 OK in 35ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3071
+  (0.1ms) rollback transaction
3072
+  (0.2ms) begin transaction
3073
+ ---------------------------------------------------------
3074
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3075
+ ---------------------------------------------------------
3076
+ Processing by RailsImager::ImagesController#show as HTML
3077
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3078
+ Rendered text template (0.0ms)
3079
+ Sent data (3.2ms)
3080
+ Completed 200 OK in 66ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3081
+  (0.1ms) rollback transaction
3082
+  (0.0ms) begin transaction
3083
+ -------------------------------------------------
3084
+ RailsImager::ImagesControllerTest: test_smartsize
3085
+ -------------------------------------------------
3086
+ Processing by RailsImager::ImagesController#show as HTML
3087
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3088
+ Sent data (0.4ms)
3089
+ Completed 200 OK in 33ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3090
+  (0.1ms) rollback transaction
3091
+  (0.2ms) begin transaction
3092
+ ---------------------------------------------------------
3093
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3094
+ ---------------------------------------------------------
3095
+ Processing by RailsImager::ImagesController#show as HTML
3096
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3097
+ Rendered text template (0.0ms)
3098
+ Sent data (3.1ms)
3099
+ Completed 200 OK in 74ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3100
+  (0.1ms) rollback transaction
3101
+  (0.0ms) begin transaction
3102
+ -------------------------------------------------
3103
+ RailsImager::ImagesControllerTest: test_smartsize
3104
+ -------------------------------------------------
3105
+ Processing by RailsImager::ImagesController#show as HTML
3106
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3107
+ Sent data (0.4ms)
3108
+ Completed 200 OK in 35ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3109
+  (0.1ms) rollback transaction
3110
+  (0.2ms) begin transaction
3111
+ ---------------------------------------------------------
3112
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3113
+ ---------------------------------------------------------
3114
+ Processing by RailsImager::ImagesController#show as HTML
3115
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3116
+ Rendered text template (0.0ms)
3117
+ Sent data (3.2ms)
3118
+ Completed 200 OK in 73ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3119
+  (0.1ms) rollback transaction
3120
+  (0.0ms) begin transaction
3121
+ -------------------------------------------------
3122
+ RailsImager::ImagesControllerTest: test_smartsize
3123
+ -------------------------------------------------
3124
+ Processing by RailsImager::ImagesController#show as HTML
3125
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3126
+ Sent data (0.4ms)
3127
+ Completed 200 OK in 34ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3128
+  (0.1ms) rollback transaction
3129
+  (0.2ms) begin transaction
3130
+ ---------------------------------------------------------
3131
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3132
+ ---------------------------------------------------------
3133
+ Processing by RailsImager::ImagesController#show as HTML
3134
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3135
+ Rendered text template (0.0ms)
3136
+ Sent data (3.1ms)
3137
+ Completed 200 OK in 68ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3138
+  (0.1ms) rollback transaction
3139
+  (0.1ms) begin transaction
3140
+ -------------------------------------------------
3141
+ RailsImager::ImagesControllerTest: test_smartsize
3142
+ -------------------------------------------------
3143
+ Processing by RailsImager::ImagesController#show as HTML
3144
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3145
+ Sent data (0.4ms)
3146
+ Completed 200 OK in 37ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3147
+  (0.1ms) rollback transaction
3148
+  (0.2ms) begin transaction
3149
+ ---------------------------------------------------------
3150
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3151
+ ---------------------------------------------------------
3152
+ Processing by RailsImager::ImagesController#show as HTML
3153
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3154
+ Rendered text template (0.0ms)
3155
+ Sent data (3.1ms)
3156
+ Completed 200 OK in 68ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3157
+  (0.1ms) rollback transaction
3158
+  (0.1ms) begin transaction
3159
+ -------------------------------------------------
3160
+ RailsImager::ImagesControllerTest: test_smartsize
3161
+ -------------------------------------------------
3162
+ Processing by RailsImager::ImagesController#show as HTML
3163
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3164
+ Sent data (0.4ms)
3165
+ Completed 200 OK in 34ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3166
+  (0.1ms) rollback transaction
3167
+  (0.3ms) begin transaction
3168
+ ---------------------------------------------------------
3169
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3170
+ ---------------------------------------------------------
3171
+ Processing by RailsImager::ImagesController#show as HTML
3172
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3173
+ Rendered text template (0.0ms)
3174
+ Sent data (3.2ms)
3175
+ Completed 200 OK in 74ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3176
+  (0.1ms) rollback transaction
3177
+  (0.0ms) begin transaction
3178
+ -------------------------------------------------
3179
+ RailsImager::ImagesControllerTest: test_smartsize
3180
+ -------------------------------------------------
3181
+ Processing by RailsImager::ImagesController#show as HTML
3182
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3183
+ Sent data (0.4ms)
3184
+ Completed 200 OK in 34ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3185
+  (0.1ms) rollback transaction
3186
+  (0.2ms) begin transaction
3187
+ ---------------------------------------------------------
3188
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3189
+ ---------------------------------------------------------
3190
+ Processing by RailsImager::ImagesController#show as HTML
3191
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3192
+ Rendered text template (0.0ms)
3193
+ Sent data (3.3ms)
3194
+ Completed 200 OK in 73ms (Views: 3.1ms | ActiveRecord: 0.0ms)
3195
+  (0.1ms) rollback transaction
3196
+  (0.0ms) begin transaction
3197
+ -------------------------------------------------
3198
+ RailsImager::ImagesControllerTest: test_smartsize
3199
+ -------------------------------------------------
3200
+ Processing by RailsImager::ImagesController#show as HTML
3201
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3202
+ Sent data (0.4ms)
3203
+ Completed 200 OK in 35ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3204
+  (0.1ms) rollback transaction
3205
+  (0.2ms) begin transaction
3206
+ ---------------------------------------------------------
3207
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3208
+ ---------------------------------------------------------
3209
+ Processing by RailsImager::ImagesController#show as HTML
3210
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3211
+ Rendered text template (0.0ms)
3212
+ Sent data (3.2ms)
3213
+ Completed 200 OK in 67ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3214
+  (0.1ms) rollback transaction
3215
+  (0.1ms) begin transaction
3216
+ -------------------------------------------------
3217
+ RailsImager::ImagesControllerTest: test_smartsize
3218
+ -------------------------------------------------
3219
+ Processing by RailsImager::ImagesController#show as HTML
3220
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3221
+ Sent data (0.4ms)
3222
+ Completed 200 OK in 34ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3223
+  (0.1ms) rollback transaction
3224
+  (0.3ms) begin transaction
3225
+ ---------------------------------------------------------
3226
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3227
+ ---------------------------------------------------------
3228
+ Processing by RailsImager::ImagesController#show as HTML
3229
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3230
+ Rendered text template (0.0ms)
3231
+ Sent data (3.2ms)
3232
+ Completed 200 OK in 77ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3233
+  (0.1ms) rollback transaction
3234
+  (0.1ms) begin transaction
3235
+ -------------------------------------------------
3236
+ RailsImager::ImagesControllerTest: test_smartsize
3237
+ -------------------------------------------------
3238
+ Processing by RailsImager::ImagesController#show as HTML
3239
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3240
+ Sent data (0.4ms)
3241
+ Completed 200 OK in 33ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3242
+  (0.1ms) rollback transaction
3243
+  (0.2ms) begin transaction
3244
+ ---------------------------------------------------------
3245
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3246
+ ---------------------------------------------------------
3247
+ Processing by RailsImager::ImagesController#show as HTML
3248
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3249
+ Rendered text template (0.0ms)
3250
+ Sent data (3.1ms)
3251
+ Completed 200 OK in 64ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3252
+  (0.1ms) rollback transaction
3253
+  (0.1ms) begin transaction
3254
+ -------------------------------------------------
3255
+ RailsImager::ImagesControllerTest: test_smartsize
3256
+ -------------------------------------------------
3257
+ Processing by RailsImager::ImagesController#show as HTML
3258
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3259
+ Sent data (0.4ms)
3260
+ Completed 200 OK in 33ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3261
+  (0.1ms) rollback transaction
3262
+  (0.2ms) begin transaction
3263
+ ---------------------------------------------------------
3264
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3265
+ ---------------------------------------------------------
3266
+ Processing by RailsImager::ImagesController#show as HTML
3267
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3268
+ Rendered text template (0.0ms)
3269
+ Sent data (3.5ms)
3270
+ Completed 200 OK in 66ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3271
+  (0.1ms) rollback transaction
3272
+  (0.1ms) begin transaction
3273
+ ----------------------------------------------------------
3274
+ RailsImager::ImagesControllerTest: test_invalid_parameters
3275
+ ----------------------------------------------------------
3276
+ Processing by RailsImager::ImagesController#show as HTML
3277
+ Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
3278
+ Sent data (0.4ms)
3279
+ Completed 200 OK in 77ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3280
+  (0.1ms) rollback transaction
3281
+  (0.0ms) begin transaction
3282
+ -------------------------------------------------
3283
+ RailsImager::ImagesControllerTest: test_smartsize
3284
+ -------------------------------------------------
3285
+ Processing by RailsImager::ImagesController#show as HTML
3286
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3287
+ Sent data (0.4ms)
3288
+ Completed 200 OK in 32ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3289
+  (0.1ms) rollback transaction
3290
+  (0.2ms) begin transaction
3291
+ ---------------------------------------------------------
3292
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3293
+ ---------------------------------------------------------
3294
+ Processing by RailsImager::ImagesController#show as HTML
3295
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3296
+ Rendered text template (0.0ms)
3297
+ Sent data (3.2ms)
3298
+ Completed 200 OK in 68ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3299
+  (0.1ms) rollback transaction
3300
+  (0.1ms) begin transaction
3301
+ ----------------------------------------------------------
3302
+ RailsImager::ImagesControllerTest: test_invalid_parameters
3303
+ ----------------------------------------------------------
3304
+ Processing by RailsImager::ImagesController#show as HTML
3305
+ Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
3306
+ Sent data (0.4ms)
3307
+ Completed 200 OK in 77ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3308
+  (0.3ms) rollback transaction
3309
+  (0.2ms) begin transaction
3310
+ -------------------------------------------------
3311
+ RailsImager::ImagesControllerTest: test_smartsize
3312
+ -------------------------------------------------
3313
+ Processing by RailsImager::ImagesController#show as HTML
3314
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3315
+ Sent data (0.4ms)
3316
+ Completed 200 OK in 40ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3317
+  (0.1ms) rollback transaction
3318
+  (0.2ms) begin transaction
3319
+ ---------------------------------------------------------
3320
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3321
+ ---------------------------------------------------------
3322
+ Processing by RailsImager::ImagesController#show as HTML
3323
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3324
+ Completed 500 Internal Server Error in 21ms
3325
+  (0.1ms) rollback transaction
3326
+  (0.1ms) begin transaction
3327
+ ----------------------------------------------------------
3328
+ RailsImager::ImagesControllerTest: test_invalid_parameters
3329
+ ----------------------------------------------------------
3330
+ Processing by RailsImager::ImagesController#show as HTML
3331
+ Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
3332
+ Completed 500 Internal Server Error in 0ms
3333
+  (0.1ms) rollback transaction
3334
+  (0.0ms) begin transaction
3335
+ -------------------------------------------------
3336
+ RailsImager::ImagesControllerTest: test_smartsize
3337
+ -------------------------------------------------
3338
+ Processing by RailsImager::ImagesController#show as HTML
3339
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3340
+ Completed 500 Internal Server Error in 0ms
3341
+  (0.0ms) rollback transaction
3342
+  (0.2ms) begin transaction
3343
+ ---------------------------------------------------------
3344
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3345
+ ---------------------------------------------------------
3346
+ Processing by RailsImager::ImagesController#show as HTML
3347
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3348
+ Completed 500 Internal Server Error in 21ms
3349
+  (0.1ms) rollback transaction
3350
+  (0.0ms) begin transaction
3351
+ ----------------------------------------------------------
3352
+ RailsImager::ImagesControllerTest: test_invalid_parameters
3353
+ ----------------------------------------------------------
3354
+ Processing by RailsImager::ImagesController#show as HTML
3355
+ Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
3356
+ Completed 500 Internal Server Error in 0ms
3357
+  (0.1ms) rollback transaction
3358
+  (0.0ms) begin transaction
3359
+ -------------------------------------------------
3360
+ RailsImager::ImagesControllerTest: test_smartsize
3361
+ -------------------------------------------------
3362
+ Processing by RailsImager::ImagesController#show as HTML
3363
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3364
+ Completed 500 Internal Server Error in 0ms
3365
+  (0.1ms) rollback transaction
3366
+  (0.2ms) begin transaction
3367
+ ---------------------------------------------------------
3368
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3369
+ ---------------------------------------------------------
3370
+ Processing by RailsImager::ImagesController#show as HTML
3371
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3372
+ Rendered text template (0.0ms)
3373
+ Sent data (3.2ms)
3374
+ Completed 200 OK in 67ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3375
+  (0.1ms) rollback transaction
3376
+  (0.1ms) begin transaction
3377
+ ----------------------------------------------------------
3378
+ RailsImager::ImagesControllerTest: test_invalid_parameters
3379
+ ----------------------------------------------------------
3380
+ Processing by RailsImager::ImagesController#show as HTML
3381
+ Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
3382
+ Completed 500 Internal Server Error in 0ms
3383
+  (0.1ms) rollback transaction
3384
+  (0.0ms) begin transaction
3385
+ -------------------------------------------------
3386
+ RailsImager::ImagesControllerTest: test_smartsize
3387
+ -------------------------------------------------
3388
+ Processing by RailsImager::ImagesController#show as HTML
3389
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3390
+ Sent data (0.4ms)
3391
+ Completed 200 OK in 33ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3392
+  (0.1ms) rollback transaction
3393
+  (0.2ms) begin transaction
3394
+ ---------------------------------------------------------
3395
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3396
+ ---------------------------------------------------------
3397
+ Processing by RailsImager::ImagesController#show as HTML
3398
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3399
+ Rendered text template (0.0ms)
3400
+ Sent data (3.4ms)
3401
+ Completed 200 OK in 79ms (Views: 3.2ms | ActiveRecord: 0.0ms)
3402
+  (0.1ms) rollback transaction
3403
+  (0.1ms) begin transaction
3404
+ ----------------------------------------------------------
3405
+ RailsImager::ImagesControllerTest: test_invalid_parameters
3406
+ ----------------------------------------------------------
3407
+ Processing by RailsImager::ImagesController#show as HTML
3408
+ Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
3409
+ Completed 500 Internal Server Error in 0ms
3410
+  (0.1ms) rollback transaction
3411
+  (0.0ms) begin transaction
3412
+ -------------------------------------------------
3413
+ RailsImager::ImagesControllerTest: test_smartsize
3414
+ -------------------------------------------------
3415
+ Processing by RailsImager::ImagesController#show as HTML
3416
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3417
+ Sent data (0.4ms)
3418
+ Completed 200 OK in 45ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3419
+  (0.1ms) rollback transaction
3420
+  (0.3ms) begin transaction
3421
+ ---------------------------------------------------------------------
3422
+ RailsImager::ImageHandlerTest: test_should_be_able_to_clear_the_cache
3423
+ ---------------------------------------------------------------------
3424
+  (0.1ms) rollback transaction
3425
+  (0.1ms) begin transaction
3426
+ --------------------------------------------------------------------
3427
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_cache
3428
+ --------------------------------------------------------------------
3429
+  (0.1ms) rollback transaction
3430
+  (0.0ms) begin transaction
3431
+ --------------------------------------------------------------------------------
3432
+ RailsImager::ImageHandlerTest: test_should_be_able_to_generate_valid_cache_names
3433
+ --------------------------------------------------------------------------------
3434
+  (0.0ms) rollback transaction
3435
+  (0.0ms) begin transaction
3436
+ ---------------------------------------------------------
3437
+ RailsImager::ImageHandlerTest: test_should_do_exact_sizes
3438
+ ---------------------------------------------------------
3439
+  (0.1ms) rollback transaction
3440
+  (0.0ms) begin transaction
3441
+ ------------------------------------------------------------------
3442
+ RailsImager::ImageHandlerTest: test_should_do_max_width_and_height
3443
+ ------------------------------------------------------------------
3444
+  (0.1ms) rollback transaction
3445
+  (0.0ms) begin transaction
3446
+ -------------------------------------------------------------
3447
+ RailsImager::ImageHandlerTest: test_should_do_rounded_corners
3448
+ -------------------------------------------------------------
3449
+  (0.1ms) rollback transaction
3450
+  (0.0ms) begin transaction
3451
+ ---------------------------------------------------------
3452
+ RailsImager::ImageHandlerTest: test_should_do_smartsizing
3453
+ ---------------------------------------------------------
3454
+  (0.1ms) rollback transaction
3455
+  (0.0ms) begin transaction
3456
+ ------------------------------------------------------------
3457
+ RailsImager::ImageHandlerTest: test_should_send_not_modified
3458
+ ------------------------------------------------------------
3459
+  (0.1ms) rollback transaction
3460
+  (0.0ms) begin transaction
3461
+ ---------------------------------------------------------
3462
+ RailsImager::ImagesControllerTest: test_cache_via_expires
3463
+ ---------------------------------------------------------
3464
+ Processing by RailsImager::ImagesController#show as HTML
3465
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200", "rounded_corners"=>"8"}}
3466
+ Rendered text template (0.0ms)
3467
+ Sent data (3.4ms)
3468
+ Completed 200 OK in 42ms (Views: 3.3ms | ActiveRecord: 0.0ms)
3469
+  (0.1ms) rollback transaction
3470
+  (0.2ms) begin transaction
3471
+ ----------------------------------------------------------
3472
+ RailsImager::ImagesControllerTest: test_invalid_parameters
3473
+ ----------------------------------------------------------
3474
+ Processing by RailsImager::ImagesController#show as HTML
3475
+ Parameters: {"id"=>"test.png", "image"=>{"invalid_param"=>"kasper"}}
3476
+ Completed 500 Internal Server Error in 0ms
3477
+  (0.1ms) rollback transaction
3478
+  (0.0ms) begin transaction
3479
+ -------------------------------------------------
3480
+ RailsImager::ImagesControllerTest: test_smartsize
3481
+ -------------------------------------------------
3482
+ Processing by RailsImager::ImagesController#show as HTML
3483
+ Parameters: {"id"=>"test.png", "image"=>{"smartsize"=>"200"}}
3484
+ Sent data (0.4ms)
3485
+ Completed 200 OK in 33ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3486
+  (0.1ms) rollback transaction
3487
+  (0.1ms) begin transaction
3488
+ ------------------------------------------------------
3489
+ RailsImager::ImagesHelperTest: test_#rails_imager_path
3490
+ ------------------------------------------------------
3491
+  (0.0ms) rollback transaction
3492
+  (0.0ms) begin transaction
3493
+ ---------------------------
3494
+ RailsImagerTest: test_truth
3495
+ ---------------------------
3496
+  (0.0ms) rollback transaction