pdfcraft 3.0.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 5541805f6b3c24b3e9c5f7e2332579eb5312a062
4
- data.tar.gz: 42069eeab96193f6e6d502aac44f4c6ff19e28fc
2
+ SHA256:
3
+ metadata.gz: f0360a7d70103723688f542fe362bdb5e2f71f4fb75df0a1364b173cc54f69df
4
+ data.tar.gz: 3c5a79be942bff4e35211f6f9d7035d64884ae60090e6de53e1fbde0bdcc6f06
5
5
  SHA512:
6
- metadata.gz: 4c3c780474c1045e931e9c8b16ebdea93352ee5ed99da35ab2f11e8063c309a3082fd852a58fb4d619b7b64f806838640a9786bbb4ce8af86212182c367a7fed
7
- data.tar.gz: d056b75b684cb8350483cce126be6433c683f8912069cb740d7e92e88c632ef344b679d297d48e7ed404acfa72998aec188eaaa5d6d70e43585c9b8db258e9cb
6
+ metadata.gz: e03379d55354006afb3724dab033253f27aeee82f2ae90cd073af5ceb4c3c37cea2d711cf08d23db6ff3a8d21a4d08255a7bb573fc034257845c0d04d86902bb
7
+ data.tar.gz: 14a26c26a48bbd3b16ba539ba8c47d83289b1064796a041968410faa783d585e1fa6b351168e0ebf4f1f8c5e6aa3336b3d4c7c97170b4ec33235b67dc55fe921
@@ -1,3 +1,3 @@
1
1
  module Pdfcraft
2
- VERSION = "3.0.0"
2
+ VERSION = "4.0.0"
3
3
  end
@@ -1,1463 +1,243 @@
1
- ----------------------------------------------------------------
2
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
3
- ----------------------------------------------------------------
4
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 11:29:55 -0400
5
- Processing by HomeController#renamed_var as PDF
6
- Rendered home/renamed_var.pdf.pdfcraft (31.2ms)
7
- Rendered text template (0.0ms)
8
- Sent data contents.pdf (1.3ms)
9
- Completed 200 OK in 46ms (Views: 45.5ms)
10
- ------------------------
11
- PdfcraftTest: test_truth
12
- ------------------------
13
- ----------------------------------------------------------------------
14
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
15
- ----------------------------------------------------------------------
16
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 11:29:55 -0400
17
- Processing by HomeController#pdf_layout as PDF
18
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (5.8ms)
19
- Rendered text template (0.0ms)
20
- Sent data contents.pdf (0.2ms)
21
- Completed 200 OK in 10ms (Views: 10.2ms)
22
- ----------------------------------------------------
23
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
24
- ----------------------------------------------------
25
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 11:29:55 -0400
26
- Processing by HomeController#pdf_layout as PDF
27
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (5.6ms)
28
- Rendered text template (0.0ms)
29
- Sent data contents.pdf (0.2ms)
30
- Completed 200 OK in 8ms (Views: 7.6ms)
31
- ---------------------------------------------------------------
32
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
33
- ---------------------------------------------------------------
34
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 11:29:55 -0400
35
- Processing by HomeController#another as PDF
36
- Rendered home/index.pdf.pdfcraft within layouts/application (6.2ms)
37
- Rendered text template (0.0ms)
38
- Sent data contents.pdf (0.4ms)
39
- Completed 200 OK in 11ms (Views: 9.6ms)
40
- -------------------------------------------------------
41
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
42
- -------------------------------------------------------
43
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 11:29:55 -0400
44
- Processing by HomeController#helpers as PDF
45
- Rendered home/helpers.pdf.pdfcraft within layouts/application (9.6ms)
46
- Rendered text template (0.0ms)
47
- Sent data contents.pdf (0.3ms)
48
- Completed 200 OK in 16ms (Views: 15.5ms)
49
- -----------------------------------------------------
50
- PdfRenderingTest: test_pdf_rendering_can_use_partials
51
- -----------------------------------------------------
52
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 11:29:55 -0400
53
- Processing by HomeController#partials as PDF
54
- Rendered home/_the_partial.pdf.pdfcraft (1.5ms)
55
- Rendered home/partials.pdf.pdfcraft within layouts/application (10.6ms)
56
- Rendered text template (0.0ms)
57
- Sent data contents.pdf (0.3ms)
58
- Completed 200 OK in 14ms (Views: 13.9ms)
59
- --------------------------------------------------------
60
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
61
- --------------------------------------------------------
62
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 11:29:55 -0400
63
- Processing by HomeController#index as PDF
64
- Rendered home/index.pdf.pdfcraft within layouts/application (9.4ms)
65
- Rendered text template (0.0ms)
66
- Sent data contents.pdf (0.8ms)
67
- Completed 200 OK in 16ms (Views: 15.5ms)
68
- ----------------------------------------------------------------------
69
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
70
- ----------------------------------------------------------------------
71
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 11:31:22 -0400
72
- Processing by HomeController#pdf_layout as PDF
73
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (37.7ms)
74
- Rendered text template (0.0ms)
75
- Sent data contents.pdf (0.7ms)
76
- Completed 200 OK in 47ms (Views: 46.9ms)
77
- ----------------------------------------------------
78
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
79
- ----------------------------------------------------
80
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 11:31:22 -0400
81
- Processing by HomeController#pdf_layout as PDF
82
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (11.4ms)
83
- Rendered text template (0.0ms)
84
- Sent data contents.pdf (0.3ms)
85
- Completed 200 OK in 15ms (Views: 14.4ms)
86
- ---------------------------------------------------------------
87
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
88
- ---------------------------------------------------------------
89
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 11:31:22 -0400
90
- Processing by HomeController#another as PDF
91
- Rendered home/index.pdf.pdfcraft within layouts/application (6.1ms)
92
- Rendered text template (0.0ms)
93
- Sent data contents.pdf (0.3ms)
94
- Completed 200 OK in 9ms (Views: 9.1ms)
95
- --------------------------------------------------------
96
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
97
- --------------------------------------------------------
98
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 11:31:22 -0400
99
- Processing by HomeController#index as PDF
100
- Rendered home/index.pdf.pdfcraft within layouts/application (5.6ms)
101
- Rendered text template (0.0ms)
102
- Sent data contents.pdf (2.2ms)
103
- Completed 200 OK in 10ms (Views: 10.1ms)
104
- -----------------------------------------------------
105
- PdfRenderingTest: test_pdf_rendering_can_use_partials
106
- -----------------------------------------------------
107
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 11:31:22 -0400
108
- Processing by HomeController#partials as PDF
109
- Rendered home/_the_partial.pdf.pdfcraft (2.5ms)
110
- Rendered home/partials.pdf.pdfcraft within layouts/application (17.0ms)
111
- Rendered text template (0.0ms)
112
- Sent data contents.pdf (0.3ms)
113
- Completed 200 OK in 21ms (Views: 20.6ms)
114
- -------------------------------------------------------
115
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
116
- -------------------------------------------------------
117
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 11:31:22 -0400
118
- Processing by HomeController#helpers as PDF
119
- Rendered home/helpers.pdf.pdfcraft within layouts/application (6.4ms)
120
- Rendered text template (0.0ms)
121
- Sent data contents.pdf (0.3ms)
122
- Completed 200 OK in 10ms (Views: 9.7ms)
123
- ------------------------
124
- PdfcraftTest: test_truth
125
- ------------------------
126
- ----------------------------------------------------------------
127
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
128
- ----------------------------------------------------------------
129
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 11:31:22 -0400
130
- Processing by HomeController#renamed_var as PDF
131
- Rendered home/renamed_var.pdf.pdfcraft (11.5ms)
132
- Rendered text template (0.0ms)
133
- Sent data contents.pdf (0.5ms)
134
- Completed 200 OK in 14ms (Views: 13.5ms)
135
- ------------------------
136
- PdfcraftTest: test_truth
137
- ------------------------
138
- ----------------------------------------------------------------
139
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
140
- ----------------------------------------------------------------
141
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 12:25:21 -0400
142
- Processing by HomeController#renamed_var as PDF
143
- Rendered home/renamed_var.pdf.pdfcraft (32.5ms)
144
- Rendered text template (0.0ms)
145
- Sent data contents.pdf (1.8ms)
146
- Completed 200 OK in 40ms (Views: 40.2ms)
147
- --------------------------------------------------------
148
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
149
- --------------------------------------------------------
150
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 12:25:21 -0400
151
- Processing by HomeController#index as PDF
152
- Rendered home/index.pdf.pdfcraft within layouts/application (5.5ms)
153
- Rendered text template (0.0ms)
154
- Sent data contents.pdf (0.3ms)
155
- Completed 200 OK in 10ms (Views: 10.0ms)
156
- ----------------------------------------------------------------------
157
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
158
- ----------------------------------------------------------------------
159
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:25:21 -0400
160
- Processing by HomeController#pdf_layout as PDF
161
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (5.9ms)
162
- Rendered text template (0.0ms)
163
- Sent data contents.pdf (0.2ms)
164
- Completed 200 OK in 9ms (Views: 8.7ms)
165
- -----------------------------------------------------
166
- PdfRenderingTest: test_pdf_rendering_can_use_partials
167
- -----------------------------------------------------
168
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 12:25:21 -0400
169
- Processing by HomeController#partials as PDF
170
- Rendered home/_the_partial.pdf.pdfcraft (1.5ms)
171
- Rendered home/partials.pdf.pdfcraft within layouts/application (10.2ms)
172
- Rendered text template (0.0ms)
173
- Sent data contents.pdf (0.4ms)
174
- Completed 200 OK in 16ms (Views: 16.4ms)
175
- ----------------------------------------------------
176
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
177
- ----------------------------------------------------
178
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:25:21 -0400
179
- Processing by HomeController#pdf_layout as PDF
180
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (10.4ms)
181
- Rendered text template (0.0ms)
182
- Sent data contents.pdf (0.3ms)
183
- Completed 200 OK in 13ms (Views: 13.3ms)
184
- -------------------------------------------------------
185
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
186
- -------------------------------------------------------
187
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 12:25:21 -0400
188
- Processing by HomeController#helpers as PDF
189
- Rendered home/helpers.pdf.pdfcraft within layouts/application (8.4ms)
190
- Rendered text template (0.0ms)
191
- Sent data contents.pdf (0.2ms)
192
- Completed 200 OK in 12ms (Views: 12.0ms)
193
- ---------------------------------------------------------------
194
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
195
- ---------------------------------------------------------------
196
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 12:25:21 -0400
197
- Processing by HomeController#another as PDF
198
- Rendered home/index.pdf.pdfcraft within layouts/application (13.8ms)
199
- Rendered text template (0.0ms)
200
- Sent data contents.pdf (0.3ms)
201
- Completed 200 OK in 17ms (Views: 16.7ms)
202
- ----------------------------------------------------------------
203
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
204
- ----------------------------------------------------------------
205
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 12:28:15 -0400
206
- Processing by HomeController#renamed_var as PDF
207
- Rendered home/renamed_var.pdf.pdfcraft (35.9ms)
208
- Rendered text template (0.1ms)
209
- Sent data contents.pdf (2.3ms)
210
- Completed 200 OK in 44ms (Views: 44.1ms)
211
- ------------------------
212
- PdfcraftTest: test_truth
213
- ------------------------
214
- ----------------------------------------------------------------------
215
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
216
- ----------------------------------------------------------------------
217
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:28:15 -0400
218
- Processing by HomeController#pdf_layout as PDF
219
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (5.8ms)
220
- Rendered text template (0.0ms)
221
- Sent data contents.pdf (0.3ms)
222
- Completed 200 OK in 11ms (Views: 10.9ms)
223
- --------------------------------------------------------
224
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
225
- --------------------------------------------------------
226
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 12:28:15 -0400
227
- Processing by HomeController#index as PDF
228
- Rendered home/index.pdf.pdfcraft within layouts/application (5.6ms)
229
- Rendered text template (0.0ms)
230
- Sent data contents.pdf (0.2ms)
231
- Completed 200 OK in 9ms (Views: 8.6ms)
232
- ----------------------------------------------------
233
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
234
- ----------------------------------------------------
235
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:28:15 -0400
236
- Processing by HomeController#pdf_layout as PDF
237
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (5.9ms)
238
- Rendered text template (0.0ms)
239
- Sent data contents.pdf (0.3ms)
240
- Completed 200 OK in 9ms (Views: 8.5ms)
241
- -------------------------------------------------------
242
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
243
- -------------------------------------------------------
244
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 12:28:15 -0400
245
- Processing by HomeController#helpers as PDF
246
- Rendered home/helpers.pdf.pdfcraft within layouts/application (5.5ms)
247
- Rendered text template (0.0ms)
248
- Sent data contents.pdf (0.2ms)
249
- Completed 200 OK in 8ms (Views: 8.2ms)
250
- ---------------------------------------------------------------
251
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
252
- ---------------------------------------------------------------
253
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 12:28:15 -0400
254
- Processing by HomeController#another as PDF
255
- Rendered home/index.pdf.pdfcraft within layouts/application (12.1ms)
256
- Rendered text template (0.0ms)
257
- Sent data contents.pdf (0.3ms)
258
- Completed 200 OK in 15ms (Views: 14.4ms)
259
- -----------------------------------------------------
260
- PdfRenderingTest: test_pdf_rendering_can_use_partials
261
- -----------------------------------------------------
262
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 12:28:15 -0400
263
- Processing by HomeController#partials as PDF
264
- Rendered home/_the_partial.pdf.pdfcraft (1.4ms)
265
- Rendered home/partials.pdf.pdfcraft within layouts/application (12.3ms)
266
- Rendered text template (0.0ms)
267
- Sent data contents.pdf (0.2ms)
268
- Completed 200 OK in 15ms (Views: 15.2ms)
269
- ------------------------
270
- PdfcraftTest: test_truth
271
- ------------------------
272
- ----------------------------------------------------
273
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
274
- ----------------------------------------------------
275
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:30:24 -0400
276
- Processing by HomeController#pdf_layout as PDF
277
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (42.4ms)
278
- Rendered text template (0.0ms)
279
- Sent data contents.pdf (0.8ms)
280
- Completed 200 OK in 53ms (Views: 52.4ms)
281
- ---------------------------------------------------------------
282
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
283
- ---------------------------------------------------------------
284
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 12:30:24 -0400
285
- Processing by HomeController#another as PDF
286
- Rendered home/index.pdf.pdfcraft within layouts/application (5.7ms)
287
- Rendered text template (0.0ms)
288
- Sent data contents.pdf (0.3ms)
289
- Completed 200 OK in 9ms (Views: 8.5ms)
290
- ----------------------------------------------------------------------
291
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
292
- ----------------------------------------------------------------------
293
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:30:24 -0400
294
- Processing by HomeController#pdf_layout as PDF
295
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (5.5ms)
296
- Rendered text template (0.0ms)
297
- Sent data contents.pdf (0.2ms)
298
- Completed 200 OK in 8ms (Views: 7.7ms)
299
- -----------------------------------------------------
300
- PdfRenderingTest: test_pdf_rendering_can_use_partials
301
- -----------------------------------------------------
302
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 12:30:24 -0400
303
- Processing by HomeController#partials as PDF
304
- Rendered home/_the_partial.pdf.pdfcraft (4.8ms)
305
- Rendered home/partials.pdf.pdfcraft within layouts/application (19.3ms)
306
- Rendered text template (0.0ms)
307
- Sent data contents.pdf (0.3ms)
308
- Completed 200 OK in 25ms (Views: 24.8ms)
309
- --------------------------------------------------------
310
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
311
- --------------------------------------------------------
312
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 12:30:24 -0400
313
- Processing by HomeController#index as PDF
314
- Rendered home/index.pdf.pdfcraft within layouts/application (6.2ms)
315
- Rendered text template (0.0ms)
316
- Sent data contents.pdf (0.3ms)
317
- Completed 200 OK in 9ms (Views: 8.4ms)
318
- -------------------------------------------------------
319
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
320
- -------------------------------------------------------
321
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 12:30:24 -0400
322
- Processing by HomeController#helpers as PDF
323
- Rendered home/helpers.pdf.pdfcraft within layouts/application (7.2ms)
324
- Rendered text template (0.1ms)
325
- Sent data contents.pdf (0.8ms)
326
- Completed 200 OK in 13ms (Views: 13.2ms)
327
- ----------------------------------------------------------------
328
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
329
- ----------------------------------------------------------------
330
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 12:30:24 -0400
331
- Processing by HomeController#renamed_var as PDF
332
- Rendered home/renamed_var.pdf.pdfcraft (6.6ms)
333
- Rendered text template (0.0ms)
334
- Sent data contents.pdf (0.4ms)
335
- Completed 200 OK in 8ms (Views: 8.1ms)
336
- ----------------------------------------------------------------
337
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
338
- ----------------------------------------------------------------
339
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 12:33:34 -0400
340
- Processing by HomeController#renamed_var as PDF
341
- Rendered home/renamed_var.pdf.pdfcraft (38.8ms)
342
- Rendered text template (0.0ms)
343
- Sent data contents.pdf (0.8ms)
344
- Completed 200 OK in 46ms (Views: 46.1ms)
345
- -------------------------------------------------------
346
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
347
- -------------------------------------------------------
348
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 12:33:34 -0400
349
- Processing by HomeController#helpers as PDF
350
- Rendered home/helpers.pdf.pdfcraft within layouts/application (5.4ms)
351
- Rendered text template (0.0ms)
352
- Sent data contents.pdf (0.2ms)
353
- Completed 200 OK in 10ms (Views: 9.6ms)
354
- -----------------------------------------------------
355
- PdfRenderingTest: test_pdf_rendering_can_use_partials
356
- -----------------------------------------------------
357
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 12:33:34 -0400
358
- Processing by HomeController#partials as PDF
359
- Rendered home/_the_partial.pdf.pdfcraft (1.2ms)
360
- Rendered home/partials.pdf.pdfcraft within layouts/application (9.1ms)
361
- Rendered text template (0.0ms)
362
- Sent data contents.pdf (0.2ms)
363
- Completed 200 OK in 12ms (Views: 11.6ms)
364
- ----------------------------------------------------------------------
365
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
366
- ----------------------------------------------------------------------
367
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:33:34 -0400
368
- Processing by HomeController#pdf_layout as PDF
369
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (5.6ms)
370
- Rendered text template (0.0ms)
371
- Sent data contents.pdf (0.2ms)
372
- Completed 200 OK in 8ms (Views: 8.4ms)
373
- --------------------------------------------------------
374
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
375
- --------------------------------------------------------
376
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 12:33:34 -0400
377
- Processing by HomeController#index as PDF
378
- Rendered home/index.pdf.pdfcraft within layouts/application (5.7ms)
379
- Rendered text template (0.0ms)
380
- Sent data contents.pdf (0.2ms)
381
- Completed 200 OK in 8ms (Views: 8.3ms)
382
- ---------------------------------------------------------------
383
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
384
- ---------------------------------------------------------------
385
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 12:33:34 -0400
386
- Processing by HomeController#another as PDF
387
- Rendered home/index.pdf.pdfcraft within layouts/application (6.1ms)
388
- Rendered text template (0.0ms)
389
- Sent data contents.pdf (0.2ms)
390
- Completed 200 OK in 8ms (Views: 8.1ms)
391
- ----------------------------------------------------
392
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
393
- ----------------------------------------------------
394
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:33:34 -0400
395
- Processing by HomeController#pdf_layout as PDF
396
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (7.2ms)
397
- Rendered text template (0.0ms)
398
- Sent data contents.pdf (0.3ms)
399
- Completed 200 OK in 11ms (Views: 10.8ms)
400
- ------------------------
401
- PdfcraftTest: test_truth
402
- ------------------------
403
- ---------------------------------------------------------------
404
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
405
- ---------------------------------------------------------------
406
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 12:34:30 -0400
407
- Processing by HomeController#another as PDF
408
- Rendered home/index.pdf.pdfcraft within layouts/application (37.9ms)
409
- Rendered text template (0.0ms)
410
- Sent data contents.pdf (0.7ms)
411
- Completed 200 OK in 47ms (Views: 47.3ms)
412
- -------------------------------------------------------
413
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
414
- -------------------------------------------------------
415
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 12:34:30 -0400
416
- Processing by HomeController#helpers as PDF
417
- Rendered home/helpers.pdf.pdfcraft within layouts/application (5.7ms)
418
- Rendered text template (0.0ms)
419
- Sent data contents.pdf (0.2ms)
420
- Completed 200 OK in 9ms (Views: 8.5ms)
421
- --------------------------------------------------------
422
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
423
- --------------------------------------------------------
424
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 12:34:30 -0400
425
- Processing by HomeController#index as PDF
426
- Rendered home/index.pdf.pdfcraft within layouts/application (5.8ms)
427
- Rendered text template (0.0ms)
428
- Sent data contents.pdf (0.3ms)
429
- Completed 200 OK in 8ms (Views: 7.9ms)
430
- -----------------------------------------------------
431
- PdfRenderingTest: test_pdf_rendering_can_use_partials
432
- -----------------------------------------------------
433
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 12:34:30 -0400
434
- Processing by HomeController#partials as PDF
435
- Rendered home/_the_partial.pdf.pdfcraft (1.2ms)
436
- Rendered home/partials.pdf.pdfcraft within layouts/application (11.2ms)
437
- Rendered text template (0.0ms)
438
- Sent data contents.pdf (0.2ms)
439
- Completed 200 OK in 14ms (Views: 13.9ms)
440
- ----------------------------------------------------------------------
441
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
442
- ----------------------------------------------------------------------
443
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:34:30 -0400
444
- Processing by HomeController#pdf_layout as PDF
445
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (6.3ms)
446
- Rendered text template (0.0ms)
447
- Sent data contents.pdf (0.3ms)
448
- Completed 200 OK in 9ms (Views: 9.4ms)
449
- ----------------------------------------------------
450
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
451
- ----------------------------------------------------
452
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 12:34:31 -0400
453
- Processing by HomeController#pdf_layout as PDF
454
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (6.0ms)
455
- Rendered text template (0.0ms)
456
- Sent data contents.pdf (0.3ms)
457
- Completed 200 OK in 9ms (Views: 8.5ms)
458
- ------------------------
459
- PdfcraftTest: test_truth
460
- ------------------------
461
- ----------------------------------------------------------------
462
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
463
- ----------------------------------------------------------------
464
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 12:34:31 -0400
465
- Processing by HomeController#renamed_var as PDF
466
- Rendered home/renamed_var.pdf.pdfcraft (6.1ms)
467
- Rendered text template (0.0ms)
468
- Sent data contents.pdf (0.2ms)
469
- Completed 200 OK in 7ms (Views: 7.4ms)
470
- ------------------------
471
- PdfcraftTest: test_truth
472
- ------------------------
473
- ----------------------------------------------------------------
474
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
475
- ----------------------------------------------------------------
476
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 13:01:57 -0400
477
- Processing by HomeController#renamed_var as PDF
478
- Rendered home/renamed_var.pdf.pdfcraft (33.9ms)
479
- Rendered text template (0.0ms)
480
- Sent data contents.pdf (1.2ms)
481
- Completed 200 OK in 42ms (Views: 42.2ms)
482
- -----------------------------------------------------
483
- PdfRenderingTest: test_pdf_rendering_can_use_partials
484
- -----------------------------------------------------
485
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 13:01:57 -0400
486
- Processing by HomeController#partials as PDF
487
- Rendered home/_the_partial.pdf.pdfcraft (1.4ms)
488
- Rendered home/partials.pdf.pdfcraft within layouts/application (6.3ms)
489
- Rendered text template (0.0ms)
490
- Sent data contents.pdf (0.3ms)
491
- Completed 200 OK in 11ms (Views: 10.8ms)
492
- ----------------------------------------------------------------------
493
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
494
- ----------------------------------------------------------------------
495
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:01:57 -0400
496
- Processing by HomeController#pdf_layout as PDF
497
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.8ms)
498
- Rendered text template (0.0ms)
499
- Sent data contents.pdf (0.2ms)
500
- Completed 200 OK in 5ms (Views: 4.9ms)
501
- ---------------------------------------------------------------
502
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
503
- ---------------------------------------------------------------
504
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 13:01:57 -0400
505
- Processing by HomeController#another as PDF
506
- Rendered home/index.pdf.pdfcraft within layouts/application (1.5ms)
507
- Rendered text template (0.0ms)
508
- Sent data contents.pdf (0.2ms)
509
- Completed 200 OK in 4ms (Views: 4.4ms)
510
- -------------------------------------------------------
511
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
512
- -------------------------------------------------------
513
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 13:01:57 -0400
514
- Processing by HomeController#helpers as PDF
515
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.6ms)
516
- Rendered text template (0.0ms)
517
- Sent data contents.pdf (0.3ms)
518
- Completed 200 OK in 5ms (Views: 4.7ms)
519
- --------------------------------------------------------
520
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
521
- --------------------------------------------------------
522
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 13:01:57 -0400
523
- Processing by HomeController#index as PDF
524
- Rendered home/index.pdf.pdfcraft within layouts/application (1.5ms)
525
- Rendered text template (0.0ms)
526
- Sent data contents.pdf (0.3ms)
527
- Completed 200 OK in 8ms (Views: 7.5ms)
528
- ----------------------------------------------------
529
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
530
- ----------------------------------------------------
531
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:01:57 -0400
532
- Processing by HomeController#pdf_layout as PDF
533
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.5ms)
534
- Rendered text template (0.0ms)
535
- Sent data contents.pdf (0.2ms)
536
- Completed 200 OK in 3ms (Views: 3.3ms)
537
- ----------------------------------------------------------------
538
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
539
- ----------------------------------------------------------------
540
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 13:04:54 -0400
541
- Processing by HomeController#renamed_var as PDF
542
- Rendered home/renamed_var.pdf.pdfcraft (42.0ms)
543
- Rendered text template (0.0ms)
544
- Sent data contents.pdf (0.9ms)
545
- Completed 200 OK in 50ms (Views: 50.3ms)
546
- ----------------------------------------------------------------------
547
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
548
- ----------------------------------------------------------------------
549
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:04:54 -0400
550
- Processing by HomeController#pdf_layout as PDF
551
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (2.0ms)
552
- Rendered text template (0.0ms)
553
- Sent data contents.pdf (0.3ms)
554
- Completed 200 OK in 11ms (Views: 11.1ms)
555
- -------------------------------------------------------
556
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
557
- -------------------------------------------------------
558
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 13:04:54 -0400
559
- Processing by HomeController#helpers as PDF
560
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.5ms)
561
- Rendered text template (0.0ms)
562
- Sent data contents.pdf (0.2ms)
563
- Completed 200 OK in 4ms (Views: 4.2ms)
564
- -----------------------------------------------------
565
- PdfRenderingTest: test_pdf_rendering_can_use_partials
566
- -----------------------------------------------------
567
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 13:04:54 -0400
568
- Processing by HomeController#partials as PDF
569
- Rendered home/_the_partial.pdf.pdfcraft (1.2ms)
570
- Rendered home/partials.pdf.pdfcraft within layouts/application (4.9ms)
571
- Rendered text template (0.0ms)
572
- Sent data contents.pdf (0.2ms)
573
- Completed 200 OK in 8ms (Views: 7.7ms)
574
- ----------------------------------------------------
575
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
576
- ----------------------------------------------------
577
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:04:54 -0400
578
- Processing by HomeController#pdf_layout as PDF
579
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.8ms)
580
- Rendered text template (0.0ms)
581
- Sent data contents.pdf (0.3ms)
582
- Completed 200 OK in 6ms (Views: 6.3ms)
583
- --------------------------------------------------------
584
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
585
- --------------------------------------------------------
586
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 13:04:54 -0400
587
- Processing by HomeController#index as PDF
588
- Rendered home/index.pdf.pdfcraft within layouts/application (1.5ms)
589
- Rendered text template (0.0ms)
590
- Sent data contents.pdf (0.2ms)
591
- Completed 200 OK in 4ms (Views: 4.2ms)
592
- ---------------------------------------------------------------
593
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
594
- ---------------------------------------------------------------
595
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 13:04:54 -0400
596
- Processing by HomeController#another as PDF
597
- Rendered home/index.pdf.pdfcraft within layouts/application (1.5ms)
598
- Rendered text template (0.0ms)
599
- Sent data contents.pdf (0.2ms)
600
- Completed 200 OK in 4ms (Views: 3.5ms)
601
- ------------------------
602
- PdfcraftTest: test_truth
603
- ------------------------
604
- ----------------------------------------------------------------
605
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
606
- ----------------------------------------------------------------
607
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 13:06:23 -0400
608
- Processing by HomeController#renamed_var as PDF
609
- Rendered home/renamed_var.pdf.pdfcraft (39.9ms)
610
- Rendered text template (0.0ms)
611
- Sent data contents.pdf (0.7ms)
612
- Completed 200 OK in 50ms (Views: 49.6ms)
613
- ------------------------
614
- PdfcraftTest: test_truth
615
- ------------------------
616
- ----------------------------------------------------
617
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
618
- ----------------------------------------------------
619
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:06:23 -0400
620
- Processing by HomeController#pdf_layout as PDF
621
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.5ms)
622
- Rendered text template (0.0ms)
623
- Sent data contents.pdf (0.2ms)
624
- Completed 200 OK in 6ms (Views: 5.4ms)
625
- ---------------------------------------------------------------
626
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
627
- ---------------------------------------------------------------
628
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 13:06:23 -0400
629
- Processing by HomeController#another as PDF
630
- Rendered home/index.pdf.pdfcraft within layouts/application (1.6ms)
631
- Rendered text template (0.0ms)
632
- Sent data contents.pdf (0.2ms)
633
- Completed 200 OK in 4ms (Views: 4.4ms)
634
- ----------------------------------------------------------------------
635
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
636
- ----------------------------------------------------------------------
637
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:06:23 -0400
638
- Processing by HomeController#pdf_layout as PDF
639
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.4ms)
640
- Rendered text template (0.0ms)
641
- Sent data contents.pdf (0.2ms)
642
- Completed 200 OK in 3ms (Views: 3.4ms)
643
- --------------------------------------------------------
644
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
645
- --------------------------------------------------------
646
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 13:06:23 -0400
647
- Processing by HomeController#index as PDF
648
- Rendered home/index.pdf.pdfcraft within layouts/application (1.3ms)
649
- Rendered text template (0.0ms)
650
- Sent data contents.pdf (0.4ms)
651
- Completed 200 OK in 4ms (Views: 3.5ms)
652
- -------------------------------------------------------
653
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
654
- -------------------------------------------------------
655
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 13:06:23 -0400
656
- Processing by HomeController#helpers as PDF
657
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.5ms)
658
- Rendered text template (0.0ms)
659
- Sent data contents.pdf (0.2ms)
660
- Completed 200 OK in 4ms (Views: 4.1ms)
661
- -----------------------------------------------------
662
- PdfRenderingTest: test_pdf_rendering_can_use_partials
663
- -----------------------------------------------------
664
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 13:06:23 -0400
665
- Processing by HomeController#partials as PDF
666
- Rendered home/_the_partial.pdf.pdfcraft (1.3ms)
667
- Rendered home/partials.pdf.pdfcraft within layouts/application (5.7ms)
668
- Rendered text template (0.0ms)
669
- Sent data contents.pdf (0.3ms)
670
- Completed 200 OK in 10ms (Views: 9.5ms)
671
- -------------------------------------------------------
672
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
673
- -------------------------------------------------------
674
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 13:09:41 -0400
675
- Processing by HomeController#helpers as PDF
676
- Rendered home/helpers.pdf.pdfcraft within layouts/application (48.0ms)
677
- Rendered text template (0.0ms)
678
- Sent data contents.pdf (0.9ms)
679
- Completed 200 OK in 61ms (Views: 60.6ms)
680
- -----------------------------------------------------
681
- PdfRenderingTest: test_pdf_rendering_can_use_partials
682
- -----------------------------------------------------
683
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 13:09:42 -0400
684
- Processing by HomeController#partials as PDF
685
- Rendered home/_the_partial.pdf.pdfcraft (1.1ms)
686
- Rendered home/partials.pdf.pdfcraft within layouts/application (4.7ms)
687
- Rendered text template (0.0ms)
688
- Sent data contents.pdf (0.2ms)
689
- Completed 200 OK in 7ms (Views: 7.1ms)
690
- ----------------------------------------------------------------------
691
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
692
- ----------------------------------------------------------------------
693
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:09:42 -0400
694
- Processing by HomeController#pdf_layout as PDF
695
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.5ms)
696
- Rendered text template (0.0ms)
697
- Sent data contents.pdf (0.2ms)
698
- Completed 200 OK in 4ms (Views: 4.2ms)
699
- ----------------------------------------------------
700
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
701
- ----------------------------------------------------
702
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:09:42 -0400
703
- Processing by HomeController#pdf_layout as PDF
704
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.3ms)
705
- Rendered text template (0.0ms)
706
- Sent data contents.pdf (0.2ms)
707
- Completed 200 OK in 3ms (Views: 3.1ms)
708
- ---------------------------------------------------------------
709
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
710
- ---------------------------------------------------------------
711
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 13:09:42 -0400
712
- Processing by HomeController#another as PDF
713
- Rendered home/index.pdf.pdfcraft within layouts/application (1.6ms)
714
- Rendered text template (0.0ms)
715
- Sent data contents.pdf (0.2ms)
716
- Completed 200 OK in 4ms (Views: 4.3ms)
717
- --------------------------------------------------------
718
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
719
- --------------------------------------------------------
720
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 13:09:42 -0400
721
- Processing by HomeController#index as PDF
722
- Rendered home/index.pdf.pdfcraft within layouts/application (1.4ms)
723
- Rendered text template (0.0ms)
724
- Sent data contents.pdf (0.2ms)
725
- Completed 200 OK in 4ms (Views: 3.4ms)
726
- ------------------------
727
- PdfcraftTest: test_truth
728
- ------------------------
729
- ----------------------------------------------------------------
730
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
731
- ----------------------------------------------------------------
732
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 13:09:42 -0400
733
- Processing by HomeController#renamed_var as PDF
734
- Rendered home/renamed_var.pdf.pdfcraft (1.7ms)
735
- Rendered text template (0.0ms)
736
- Sent data contents.pdf (0.3ms)
737
- Completed 200 OK in 3ms (Views: 3.3ms)
738
- ---------------------------------------------------------------
739
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
740
- ---------------------------------------------------------------
741
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 13:11:13 -0400
742
- Processing by HomeController#another as PDF
743
- Rendered home/index.pdf.pdfcraft within layouts/application (44.2ms)
744
- Rendered text template (0.0ms)
745
- Sent data contents.pdf (0.8ms)
746
- Completed 200 OK in 57ms (Views: 56.6ms)
747
- -------------------------------------------------------
748
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
749
- -------------------------------------------------------
750
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 13:11:13 -0400
751
- Processing by HomeController#helpers as PDF
752
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.5ms)
753
- Rendered text template (0.0ms)
754
- Sent data contents.pdf (0.2ms)
755
- Completed 200 OK in 4ms (Views: 4.0ms)
756
- -----------------------------------------------------
757
- PdfRenderingTest: test_pdf_rendering_can_use_partials
758
- -----------------------------------------------------
759
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 13:11:13 -0400
760
- Processing by HomeController#partials as PDF
761
- Rendered home/_the_partial.pdf.pdfcraft (1.1ms)
762
- Rendered home/partials.pdf.pdfcraft within layouts/application (4.7ms)
763
- Rendered text template (0.0ms)
764
- Sent data contents.pdf (0.2ms)
765
- Completed 200 OK in 7ms (Views: 7.4ms)
766
- --------------------------------------------------------
767
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
768
- --------------------------------------------------------
769
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 13:11:13 -0400
770
- Processing by HomeController#index as PDF
771
- Rendered home/index.pdf.pdfcraft within layouts/application (1.5ms)
772
- Rendered text template (0.0ms)
773
- Sent data contents.pdf (0.2ms)
774
- Completed 200 OK in 4ms (Views: 3.4ms)
775
- ----------------------------------------------------
776
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
777
- ----------------------------------------------------
778
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:11:13 -0400
779
- Processing by HomeController#pdf_layout as PDF
780
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.9ms)
781
- Rendered text template (0.0ms)
782
- Sent data contents.pdf (0.2ms)
783
- Completed 200 OK in 5ms (Views: 4.8ms)
784
- ----------------------------------------------------------------------
785
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
786
- ----------------------------------------------------------------------
787
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:11:13 -0400
788
- Processing by HomeController#pdf_layout as PDF
789
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.4ms)
790
- Rendered text template (0.0ms)
791
- Sent data contents.pdf (0.2ms)
792
- Completed 200 OK in 3ms (Views: 3.3ms)
793
- ------------------------
794
- PdfcraftTest: test_truth
795
- ------------------------
796
- ----------------------------------------------------------------
797
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
798
- ----------------------------------------------------------------
799
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 13:11:13 -0400
800
- Processing by HomeController#renamed_var as PDF
801
- Rendered home/renamed_var.pdf.pdfcraft (1.5ms)
802
- Rendered text template (0.0ms)
803
- Sent data contents.pdf (0.3ms)
804
- Completed 200 OK in 3ms (Views: 2.8ms)
805
- ------------------------
806
- PdfcraftTest: test_truth
807
- ------------------------
808
- ----------------------------------------------------
809
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
810
- ----------------------------------------------------
811
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:30:50 -0400
812
- Processing by HomeController#pdf_layout as PDF
813
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (28.7ms)
814
- Rendered text template (0.0ms)
815
- Sent data contents.pdf (0.7ms)
816
- Completed 200 OK in 53ms (Views: 52.8ms)
817
- -----------------------------------------------------
818
- PdfRenderingTest: test_pdf_rendering_can_use_partials
819
- -----------------------------------------------------
820
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 13:30:50 -0400
821
- Processing by HomeController#partials as PDF
822
- Rendered home/_the_partial.pdf.pdfcraft (1.1ms)
823
- Rendered home/partials.pdf.pdfcraft within layouts/application (5.0ms)
824
- Rendered text template (0.0ms)
825
- Sent data contents.pdf (0.3ms)
826
- Completed 200 OK in 8ms (Views: 7.9ms)
827
- ----------------------------------------------------------------------
828
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
829
- ----------------------------------------------------------------------
830
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:30:50 -0400
831
- Processing by HomeController#pdf_layout as PDF
832
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.7ms)
833
- Rendered text template (0.0ms)
834
- Sent data contents.pdf (0.2ms)
835
- Completed 200 OK in 4ms (Views: 3.6ms)
836
- -------------------------------------------------------
837
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
838
- -------------------------------------------------------
839
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 13:30:50 -0400
840
- Processing by HomeController#helpers as PDF
841
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.6ms)
842
- Rendered text template (0.0ms)
843
- Sent data contents.pdf (0.2ms)
844
- Completed 200 OK in 4ms (Views: 4.4ms)
845
- ---------------------------------------------------------------
846
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
847
- ---------------------------------------------------------------
848
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 13:30:50 -0400
849
- Processing by HomeController#another as PDF
850
- Rendered home/index.pdf.pdfcraft within layouts/application (1.7ms)
851
- Rendered text template (0.0ms)
852
- Sent data contents.pdf (0.2ms)
853
- Completed 200 OK in 4ms (Views: 4.4ms)
854
- --------------------------------------------------------
855
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
856
- --------------------------------------------------------
857
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 13:30:50 -0400
858
- Processing by HomeController#index as PDF
859
- Rendered home/index.pdf.pdfcraft within layouts/application (1.4ms)
860
- Rendered text template (0.0ms)
861
- Sent data contents.pdf (0.2ms)
862
- Completed 200 OK in 3ms (Views: 3.3ms)
863
- ----------------------------------------------------------------
864
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
865
- ----------------------------------------------------------------
866
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 13:30:50 -0400
867
- Processing by HomeController#renamed_var as PDF
868
- Rendered home/renamed_var.pdf.pdfcraft (1.5ms)
869
- Rendered text template (0.0ms)
870
- Sent data contents.pdf (0.2ms)
871
- Completed 200 OK in 3ms (Views: 2.8ms)
872
- ----------------------------------------------------------------------
873
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
874
- ----------------------------------------------------------------------
875
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:35:32 -0400
876
- Processing by HomeController#pdf_layout as PDF
877
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (41.7ms)
878
- Rendered text template (0.0ms)
879
- Sent data contents.pdf (0.8ms)
880
- Completed 200 OK in 53ms (Views: 53.2ms)
881
- -----------------------------------------------------
882
- PdfRenderingTest: test_pdf_rendering_can_use_partials
883
- -----------------------------------------------------
884
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 13:35:32 -0400
885
- Processing by HomeController#partials as PDF
886
- Rendered home/_the_partial.pdf.pdfcraft (1.1ms)
887
- Rendered home/partials.pdf.pdfcraft within layouts/application (4.7ms)
888
- Rendered text template (0.0ms)
889
- Sent data contents.pdf (0.2ms)
890
- Completed 200 OK in 7ms (Views: 7.3ms)
891
- ----------------------------------------------------
892
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
893
- ----------------------------------------------------
894
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:35:32 -0400
895
- Processing by HomeController#pdf_layout as PDF
896
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.4ms)
897
- Rendered text template (0.0ms)
898
- Sent data contents.pdf (0.2ms)
899
- Completed 200 OK in 3ms (Views: 3.2ms)
900
- ---------------------------------------------------------------
901
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
902
- ---------------------------------------------------------------
903
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 13:35:32 -0400
904
- Processing by HomeController#another as PDF
905
- Rendered home/index.pdf.pdfcraft within layouts/application (1.6ms)
906
- Rendered text template (0.0ms)
907
- Sent data contents.pdf (0.2ms)
908
- Completed 200 OK in 4ms (Views: 4.4ms)
909
- --------------------------------------------------------
910
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
911
- --------------------------------------------------------
912
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 13:35:32 -0400
913
- Processing by HomeController#index as PDF
914
- Rendered home/index.pdf.pdfcraft within layouts/application (1.4ms)
915
- Rendered text template (0.0ms)
916
- Sent data contents.pdf (0.2ms)
917
- Completed 200 OK in 3ms (Views: 3.2ms)
918
- -------------------------------------------------------
919
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
920
- -------------------------------------------------------
921
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 13:35:32 -0400
922
- Processing by HomeController#helpers as PDF
923
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.6ms)
924
- Rendered text template (0.0ms)
925
- Sent data contents.pdf (0.2ms)
926
- Completed 200 OK in 5ms (Views: 4.5ms)
927
- ----------------------------------------------------------------
928
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
929
- ----------------------------------------------------------------
930
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 13:35:32 -0400
931
- Processing by HomeController#renamed_var as PDF
932
- Rendered home/renamed_var.pdf.pdfcraft (1.6ms)
933
- Rendered text template (0.0ms)
934
- Sent data contents.pdf (0.2ms)
935
- Completed 200 OK in 3ms (Views: 2.8ms)
936
- ------------------------
937
- PdfcraftTest: test_truth
938
- ------------------------
939
- ----------------------------------------------------------------------
940
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
941
- ----------------------------------------------------------------------
942
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:41:05 -0400
943
- Processing by HomeController#pdf_layout as PDF
944
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (45.2ms)
945
- Rendered text template (0.0ms)
946
- Sent data contents.pdf (0.8ms)
947
- Completed 200 OK in 57ms (Views: 56.5ms)
948
- ---------------------------------------------------------------
949
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
950
- ---------------------------------------------------------------
951
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 13:41:05 -0400
952
- Processing by HomeController#another as PDF
953
- Rendered home/index.pdf.pdfcraft within layouts/application (1.6ms)
954
- Rendered text template (0.0ms)
955
- Sent data contents.pdf (0.2ms)
956
- Completed 200 OK in 5ms (Views: 4.5ms)
957
- -----------------------------------------------------
958
- PdfRenderingTest: test_pdf_rendering_can_use_partials
959
- -----------------------------------------------------
960
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 13:41:05 -0400
961
- Processing by HomeController#partials as PDF
962
- Rendered home/_the_partial.pdf.pdfcraft (1.2ms)
963
- Rendered home/partials.pdf.pdfcraft within layouts/application (5.0ms)
964
- Rendered text template (0.0ms)
965
- Sent data contents.pdf (0.2ms)
966
- Completed 200 OK in 8ms (Views: 7.6ms)
967
- ----------------------------------------------------
968
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
969
- ----------------------------------------------------
970
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:41:05 -0400
971
- Processing by HomeController#pdf_layout as PDF
972
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.5ms)
973
- Rendered text template (0.0ms)
974
- Sent data contents.pdf (0.2ms)
975
- Completed 200 OK in 4ms (Views: 3.5ms)
976
- -------------------------------------------------------
977
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
978
- -------------------------------------------------------
979
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 13:41:05 -0400
980
- Processing by HomeController#helpers as PDF
981
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.8ms)
982
- Rendered text template (0.0ms)
983
- Sent data contents.pdf (0.3ms)
984
- Completed 200 OK in 5ms (Views: 5.2ms)
985
- --------------------------------------------------------
986
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
987
- --------------------------------------------------------
988
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 13:41:05 -0400
989
- Processing by HomeController#index as PDF
990
- Rendered home/index.pdf.pdfcraft within layouts/application (2.5ms)
991
- Rendered text template (0.0ms)
992
- Sent data contents.pdf (0.3ms)
993
- Completed 200 OK in 7ms (Views: 6.5ms)
994
- ------------------------
995
- PdfcraftTest: test_truth
996
- ------------------------
997
- ----------------------------------------------------------------
998
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
999
- ----------------------------------------------------------------
1000
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 13:41:06 -0400
1001
- Processing by HomeController#renamed_var as PDF
1002
- Rendered home/renamed_var.pdf.pdfcraft (1.6ms)
1003
- Rendered text template (0.0ms)
1004
- Sent data contents.pdf (0.2ms)
1005
- Completed 200 OK in 3ms (Views: 3.0ms)
1006
- ----------------------------------------------------
1007
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
1008
- ----------------------------------------------------
1009
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:41:26 -0400
1010
- Processing by HomeController#pdf_layout as PDF
1011
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (39.5ms)
1012
- Rendered text template (0.0ms)
1013
- Sent data contents.pdf (1.2ms)
1014
- Completed 200 OK in 50ms (Views: 49.5ms)
1015
- --------------------------------------------------------
1016
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
1017
- --------------------------------------------------------
1018
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 13:41:26 -0400
1019
- Processing by HomeController#index as PDF
1020
- Rendered home/index.pdf.pdfcraft within layouts/application (1.7ms)
1021
- Rendered text template (0.0ms)
1022
- Sent data contents.pdf (0.2ms)
1023
- Completed 200 OK in 5ms (Views: 4.5ms)
1024
- -------------------------------------------------------
1025
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
1026
- -------------------------------------------------------
1027
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 13:41:26 -0400
1028
- Processing by HomeController#helpers as PDF
1029
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.5ms)
1030
- Rendered text template (0.0ms)
1031
- Sent data contents.pdf (0.2ms)
1032
- Completed 200 OK in 5ms (Views: 4.5ms)
1033
- ----------------------------------------------------------------------
1034
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
1035
- ----------------------------------------------------------------------
1036
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 13:41:26 -0400
1037
- Processing by HomeController#pdf_layout as PDF
1038
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.4ms)
1039
- Rendered text template (0.0ms)
1040
- Sent data contents.pdf (0.2ms)
1041
- Completed 200 OK in 3ms (Views: 3.1ms)
1042
- ---------------------------------------------------------------
1043
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
1044
- ---------------------------------------------------------------
1045
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 13:41:26 -0400
1046
- Processing by HomeController#another as PDF
1047
- Rendered home/index.pdf.pdfcraft within layouts/application (1.5ms)
1048
- Rendered text template (0.0ms)
1049
- Sent data contents.pdf (0.2ms)
1050
- Completed 200 OK in 4ms (Views: 3.6ms)
1051
- -----------------------------------------------------
1052
- PdfRenderingTest: test_pdf_rendering_can_use_partials
1053
- -----------------------------------------------------
1054
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 13:41:26 -0400
1055
- Processing by HomeController#partials as PDF
1056
- Rendered home/_the_partial.pdf.pdfcraft (1.9ms)
1057
- Rendered home/partials.pdf.pdfcraft within layouts/application (6.2ms)
1058
- Rendered text template (0.0ms)
1059
- Sent data contents.pdf (0.3ms)
1060
- Completed 200 OK in 10ms (Views: 9.5ms)
1061
- ------------------------
1062
- PdfcraftTest: test_truth
1063
- ------------------------
1064
- ----------------------------------------------------------------
1065
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
1066
- ----------------------------------------------------------------
1067
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 13:41:26 -0400
1068
- Processing by HomeController#renamed_var as PDF
1069
- Rendered home/renamed_var.pdf.pdfcraft (1.5ms)
1070
- Rendered text template (0.0ms)
1071
- Sent data contents.pdf (0.2ms)
1072
- Completed 200 OK in 3ms (Views: 2.8ms)
1073
1
  ------------------------
1074
2
  PdfcraftTest: test_truth
1075
3
  ------------------------
1076
4
  ----------------------------------------------------------------
1077
5
  ConfigurationTest: test_rendering_with_a_configured_pdf_variable
1078
6
  ----------------------------------------------------------------
1079
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-05-27 14:46:09 -0400
7
+ Started GET "/renamed_var.pdf" for 127.0.0.1 at 2018-05-22 21:40:16 -0400
1080
8
  Processing by HomeController#renamed_var as PDF
1081
- Rendered home/renamed_var.pdf.pdfcraft (42.4ms)
1082
- Rendered text template (0.0ms)
1083
- Sent data contents.pdf (3.3ms)
1084
- Completed 200 OK in 56ms (Views: 55.4ms)
1085
- ---------------------------------------------------------------
1086
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
1087
- ---------------------------------------------------------------
1088
- Started GET "/another.pdf" for 127.0.0.1 at 2016-05-27 14:46:09 -0400
1089
- Processing by HomeController#another as PDF
1090
- Rendered home/index.pdf.pdfcraft within layouts/application (1.5ms)
1091
- Rendered text template (0.0ms)
1092
- Sent data contents.pdf (0.2ms)
1093
- Completed 200 OK in 6ms (Views: 5.7ms)
1094
- ----------------------------------------------------
1095
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
1096
- ----------------------------------------------------
1097
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 14:46:09 -0400
1098
- Processing by HomeController#pdf_layout as PDF
1099
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.5ms)
1100
- Rendered text template (0.0ms)
1101
- Sent data contents.pdf (0.2ms)
1102
- Completed 200 OK in 4ms (Views: 4.0ms)
1103
- -----------------------------------------------------
1104
- PdfRenderingTest: test_pdf_rendering_can_use_partials
1105
- -----------------------------------------------------
1106
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-05-27 14:46:09 -0400
1107
- Processing by HomeController#partials as PDF
1108
- Rendered home/_the_partial.pdf.pdfcraft (1.4ms)
1109
- Rendered home/partials.pdf.pdfcraft within layouts/application (6.6ms)
1110
- Rendered text template (0.0ms)
1111
- Sent data contents.pdf (0.2ms)
1112
- Completed 200 OK in 9ms (Views: 9.1ms)
1113
- ----------------------------------------------------------------------
1114
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
1115
- ----------------------------------------------------------------------
1116
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-05-27 14:46:09 -0400
1117
- Processing by HomeController#pdf_layout as PDF
1118
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.5ms)
1119
- Rendered text template (0.0ms)
1120
- Sent data contents.pdf (0.2ms)
1121
- Completed 200 OK in 4ms (Views: 3.8ms)
1122
- --------------------------------------------------------
1123
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
1124
- --------------------------------------------------------
1125
- Started GET "/home.pdf" for 127.0.0.1 at 2016-05-27 14:46:09 -0400
1126
- Processing by HomeController#index as PDF
1127
- Rendered home/index.pdf.pdfcraft within layouts/application (1.5ms)
1128
- Rendered text template (0.0ms)
1129
- Sent data contents.pdf (0.8ms)
1130
- Completed 200 OK in 5ms (Views: 4.6ms)
1131
- -------------------------------------------------------
1132
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
1133
- -------------------------------------------------------
1134
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-05-27 14:46:09 -0400
1135
- Processing by HomeController#helpers as PDF
1136
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.5ms)
1137
- Rendered text template (0.0ms)
1138
- Sent data contents.pdf (0.2ms)
1139
- Completed 200 OK in 4ms (Views: 4.2ms)
1140
- ------------------------
1141
- PdfcraftTest: test_truth
1142
- ------------------------
1143
- -------------------------------------------------------
1144
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
1145
- -------------------------------------------------------
1146
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-06-03 22:44:04 -0400
1147
- Processing by HomeController#helpers as PDF
1148
- Rendering home/helpers.pdf.pdfcraft within layouts/application
1149
- Rendered home/helpers.pdf.pdfcraft within layouts/application (31.0ms)
9
+ Rendering home/renamed_var.pdf.pdfcraft
10
+ Rendered home/renamed_var.pdf.pdfcraft (29.4ms)
1150
11
  Rendering text template
1151
12
  Rendered text template (0.0ms)
1152
- Sent data contents.pdf (1.4ms)
1153
- Completed 200 OK in 42ms (Views: 41.7ms)
13
+ Sent data contents.pdf (1.3ms)
14
+ Completed 200 OK in 36ms (Views: 36.0ms)
1154
15
  ----------------------------------------------------
1155
16
  PdfRenderingTest: test_pdf_layout_can_be_set_in_view
1156
17
  ----------------------------------------------------
1157
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-06-03 22:44:04 -0400
18
+ Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2018-05-22 21:40:16 -0400
1158
19
  Processing by HomeController#pdf_layout as PDF
1159
20
  Rendering home/pdf_layout.pdf.pdfcraft within layouts/application
1160
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (2.3ms)
21
+ Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (11.8ms)
1161
22
  Rendering text template
1162
23
  Rendered text template (0.0ms)
1163
- Sent data contents.pdf (0.3ms)
1164
- Completed 200 OK in 8ms (Views: 7.8ms)
24
+ Sent data contents.pdf (0.6ms)
25
+ Completed 200 OK in 39ms (Views: 39.0ms)
1165
26
  -----------------------------------------------------
1166
27
  PdfRenderingTest: test_pdf_rendering_can_use_partials
1167
28
  -----------------------------------------------------
1168
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-06-03 22:44:04 -0400
29
+ Started GET "/partials.pdf" for 127.0.0.1 at 2018-05-22 21:40:16 -0400
1169
30
  Processing by HomeController#partials as PDF
1170
31
  Rendering home/partials.pdf.pdfcraft within layouts/application
1171
- Rendered home/_the_partial.pdf.pdfcraft (1.4ms)
1172
- Rendered home/partials.pdf.pdfcraft within layouts/application (4.6ms)
32
+ Rendered home/_the_partial.pdf.pdfcraft (2.1ms)
33
+ Rendered home/partials.pdf.pdfcraft within layouts/application (7.7ms)
1173
34
  Rendering text template
1174
35
  Rendered text template (0.0ms)
1175
- Sent data contents.pdf (0.4ms)
1176
- Completed 200 OK in 16ms (Views: 15.6ms)
36
+ Sent data contents.pdf (0.7ms)
37
+ Completed 200 OK in 22ms (Views: 22.2ms)
1177
38
  --------------------------------------------------------
1178
39
  PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
1179
40
  --------------------------------------------------------
1180
- Started GET "/home.pdf" for 127.0.0.1 at 2016-06-03 22:44:04 -0400
41
+ Started GET "/home.pdf" for 127.0.0.1 at 2018-05-22 21:40:16 -0400
1181
42
  Processing by HomeController#index as PDF
1182
43
  Rendering home/index.pdf.pdfcraft within layouts/application
1183
- Rendered home/index.pdf.pdfcraft within layouts/application (1.6ms)
44
+ Rendered home/index.pdf.pdfcraft within layouts/application (1.7ms)
1184
45
  Rendering text template
1185
46
  Rendered text template (0.0ms)
1186
- Sent data contents.pdf (0.3ms)
1187
- Completed 200 OK in 7ms (Views: 7.3ms)
47
+ Sent data contents.pdf (0.4ms)
48
+ Completed 200 OK in 8ms (Views: 7.8ms)
1188
49
  ---------------------------------------------------------------
1189
50
  PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
1190
51
  ---------------------------------------------------------------
1191
- Started GET "/another.pdf" for 127.0.0.1 at 2016-06-03 22:44:04 -0400
52
+ Started GET "/another.pdf" for 127.0.0.1 at 2018-05-22 21:40:16 -0400
1192
53
  Processing by HomeController#another as PDF
1193
54
  Rendering home/index.pdf.pdfcraft within layouts/application
1194
- Rendered home/index.pdf.pdfcraft within layouts/application (1.8ms)
55
+ Rendered home/index.pdf.pdfcraft within layouts/application (1.4ms)
1195
56
  Rendering text template
1196
57
  Rendered text template (0.0ms)
1197
- Sent data contents.pdf (0.3ms)
1198
- Completed 200 OK in 11ms (Views: 10.6ms)
58
+ Sent data contents.pdf (0.2ms)
59
+ Completed 200 OK in 3ms (Views: 3.3ms)
60
+ -------------------------------------------------------
61
+ PdfRenderingTest: test_pdf_rendering_can_access_helpers
62
+ -------------------------------------------------------
63
+ Started GET "/helpers.pdf" for 127.0.0.1 at 2018-05-22 21:40:16 -0400
64
+ Processing by HomeController#helpers as PDF
65
+ Rendering home/helpers.pdf.pdfcraft within layouts/application
66
+ Rendered home/helpers.pdf.pdfcraft within layouts/application (2.0ms)
67
+ Rendering text template
68
+ Rendered text template (0.0ms)
69
+ Sent data contents.pdf (0.4ms)
70
+ Completed 200 OK in 9ms (Views: 8.8ms)
1199
71
  ----------------------------------------------------------------------
1200
72
  PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
1201
73
  ----------------------------------------------------------------------
1202
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-06-03 22:44:04 -0400
74
+ Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2018-05-22 21:40:16 -0400
1203
75
  Processing by HomeController#pdf_layout as PDF
1204
76
  Rendering home/pdf_layout.pdf.pdfcraft within layouts/application
1205
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.5ms)
1206
- Rendering text template
1207
- Rendered text template (0.0ms)
1208
- Sent data contents.pdf (0.3ms)
1209
- Completed 200 OK in 7ms (Views: 6.5ms)
1210
- ----------------------------------------------------------------
1211
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
1212
- ----------------------------------------------------------------
1213
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-06-03 22:44:04 -0400
1214
- Processing by HomeController#renamed_var as PDF
1215
- Rendering home/renamed_var.pdf.pdfcraft
1216
- Rendered home/renamed_var.pdf.pdfcraft (2.4ms)
77
+ Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.7ms)
1217
78
  Rendering text template
1218
79
  Rendered text template (0.0ms)
1219
- Sent data contents.pdf (0.3ms)
1220
- Completed 200 OK in 5ms (Views: 4.5ms)
80
+ Sent data contents.pdf (0.4ms)
81
+ Completed 200 OK in 8ms (Views: 8.0ms)
82
+ ------------------------
83
+ PdfcraftTest: test_truth
84
+ ------------------------
1221
85
  ----------------------------------------------------------------
1222
86
  ConfigurationTest: test_rendering_with_a_configured_pdf_variable
1223
87
  ----------------------------------------------------------------
1224
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-06-03 22:47:07 -0400
88
+ Started GET "/renamed_var.pdf" for 127.0.0.1 at 2018-05-22 21:40:43 -0400
1225
89
  Processing by HomeController#renamed_var as PDF
1226
90
  Rendering home/renamed_var.pdf.pdfcraft
1227
- Rendered home/renamed_var.pdf.pdfcraft (25.8ms)
91
+ Rendered home/renamed_var.pdf.pdfcraft (30.1ms)
1228
92
  Rendering text template
1229
93
  Rendered text template (0.0ms)
1230
- Sent data contents.pdf (1.1ms)
1231
- Completed 200 OK in 30ms (Views: 30.2ms)
1232
- ------------------------
1233
- PdfcraftTest: test_truth
1234
- ------------------------
94
+ Sent data contents.pdf (0.7ms)
95
+ Completed 200 OK in 35ms (Views: 34.5ms)
1235
96
  ----------------------------------------------------------------------
1236
97
  PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
1237
98
  ----------------------------------------------------------------------
1238
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-06-03 22:47:07 -0400
99
+ Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2018-05-22 21:40:43 -0400
100
+ Processing by HomeController#pdf_layout as PDF
101
+ Rendering home/pdf_layout.pdf.pdfcraft within layouts/application
102
+ Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (3.9ms)
103
+ Rendering text template
104
+ Rendered text template (0.0ms)
105
+ Sent data contents.pdf (0.4ms)
106
+ Completed 200 OK in 15ms (Views: 15.3ms)
107
+ ----------------------------------------------------
108
+ PdfRenderingTest: test_pdf_layout_can_be_set_in_view
109
+ ----------------------------------------------------
110
+ Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2018-05-22 21:40:43 -0400
1239
111
  Processing by HomeController#pdf_layout as PDF
1240
112
  Rendering home/pdf_layout.pdf.pdfcraft within layouts/application
1241
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.8ms)
113
+ Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.7ms)
1242
114
  Rendering text template
1243
115
  Rendered text template (0.0ms)
1244
116
  Sent data contents.pdf (0.3ms)
1245
- Completed 200 OK in 7ms (Views: 6.7ms)
117
+ Completed 200 OK in 4ms (Views: 4.0ms)
1246
118
  -----------------------------------------------------
1247
119
  PdfRenderingTest: test_pdf_rendering_can_use_partials
1248
120
  -----------------------------------------------------
1249
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-06-03 22:47:07 -0400
121
+ Started GET "/partials.pdf" for 127.0.0.1 at 2018-05-22 21:40:43 -0400
1250
122
  Processing by HomeController#partials as PDF
1251
123
  Rendering home/partials.pdf.pdfcraft within layouts/application
1252
- Rendered home/_the_partial.pdf.pdfcraft (1.3ms)
1253
- Rendered home/partials.pdf.pdfcraft within layouts/application (3.9ms)
124
+ Rendered home/_the_partial.pdf.pdfcraft (1.1ms)
125
+ Rendered home/partials.pdf.pdfcraft within layouts/application (4.1ms)
1254
126
  Rendering text template
1255
127
  Rendered text template (0.0ms)
1256
128
  Sent data contents.pdf (0.3ms)
1257
- Completed 200 OK in 9ms (Views: 8.6ms)
129
+ Completed 200 OK in 8ms (Views: 7.6ms)
1258
130
  ---------------------------------------------------------------
1259
131
  PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
1260
132
  ---------------------------------------------------------------
1261
- Started GET "/another.pdf" for 127.0.0.1 at 2016-06-03 22:47:07 -0400
133
+ Started GET "/another.pdf" for 127.0.0.1 at 2018-05-22 21:40:43 -0400
1262
134
  Processing by HomeController#another as PDF
1263
135
  Rendering home/index.pdf.pdfcraft within layouts/application
1264
- Rendered home/index.pdf.pdfcraft within layouts/application (1.8ms)
136
+ Rendered home/index.pdf.pdfcraft within layouts/application (1.7ms)
1265
137
  Rendering text template
1266
138
  Rendered text template (0.0ms)
1267
139
  Sent data contents.pdf (0.3ms)
1268
- Completed 200 OK in 7ms (Views: 7.1ms)
140
+ Completed 200 OK in 6ms (Views: 5.7ms)
1269
141
  -------------------------------------------------------
1270
142
  PdfRenderingTest: test_pdf_rendering_can_access_helpers
1271
143
  -------------------------------------------------------
1272
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-06-03 22:47:07 -0400
144
+ Started GET "/helpers.pdf" for 127.0.0.1 at 2018-05-22 21:40:43 -0400
1273
145
  Processing by HomeController#helpers as PDF
1274
146
  Rendering home/helpers.pdf.pdfcraft within layouts/application
1275
- Rendered home/helpers.pdf.pdfcraft within layouts/application (3.4ms)
1276
- Rendering text template
1277
- Rendered text template (0.0ms)
1278
- Sent data contents.pdf (0.3ms)
1279
- Completed 200 OK in 10ms (Views: 9.4ms)
1280
- ----------------------------------------------------
1281
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
1282
- ----------------------------------------------------
1283
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-06-03 22:47:08 -0400
1284
- Processing by HomeController#pdf_layout as PDF
1285
- Rendering home/pdf_layout.pdf.pdfcraft within layouts/application
1286
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.6ms)
147
+ Rendered home/helpers.pdf.pdfcraft within layouts/application (1.8ms)
1287
148
  Rendering text template
1288
149
  Rendered text template (0.0ms)
1289
- Sent data contents.pdf (0.3ms)
1290
- Completed 200 OK in 7ms (Views: 6.8ms)
150
+ Sent data contents.pdf (0.4ms)
151
+ Completed 200 OK in 7ms (Views: 7.0ms)
1291
152
  --------------------------------------------------------
1292
153
  PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
1293
154
  --------------------------------------------------------
1294
- Started GET "/home.pdf" for 127.0.0.1 at 2016-06-03 22:47:08 -0400
155
+ Started GET "/home.pdf" for 127.0.0.1 at 2018-05-22 21:40:43 -0400
1295
156
  Processing by HomeController#index as PDF
1296
157
  Rendering home/index.pdf.pdfcraft within layouts/application
1297
- Rendered home/index.pdf.pdfcraft within layouts/application (1.8ms)
158
+ Rendered home/index.pdf.pdfcraft within layouts/application (3.7ms)
1298
159
  Rendering text template
1299
160
  Rendered text template (0.0ms)
1300
- Sent data contents.pdf (0.3ms)
1301
- Completed 200 OK in 7ms (Views: 6.6ms)
1302
- --------------------------------------------------------
1303
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
1304
- --------------------------------------------------------
1305
- Started GET "/home.pdf" for 127.0.0.1 at 2016-06-04 07:42:11 -0400
1306
- Processing by HomeController#index as PDF
161
+ Sent data contents.pdf (0.6ms)
162
+ Completed 200 OK in 7ms (Views: 6.7ms)
163
+ ------------------------
164
+ PdfcraftTest: test_truth
165
+ ------------------------
166
+ ----------------------------------------------------------------
167
+ ConfigurationTest: test_rendering_with_a_configured_pdf_variable
168
+ ----------------------------------------------------------------
169
+ Started GET "/renamed_var.pdf" for 127.0.0.1 at 2018-05-22 21:43:57 -0400
170
+ Processing by HomeController#renamed_var as PDF
171
+ Rendering home/renamed_var.pdf.pdfcraft
172
+ Rendered home/renamed_var.pdf.pdfcraft (29.6ms)
173
+ Rendering text template
174
+ Rendered text template (0.0ms)
175
+ Sent data contents.pdf (0.8ms)
176
+ Completed 200 OK in 35ms (Views: 34.3ms)
177
+ ---------------------------------------------------------------
178
+ PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
179
+ ---------------------------------------------------------------
180
+ Started GET "/another.pdf" for 127.0.0.1 at 2018-05-22 21:43:57 -0400
181
+ Processing by HomeController#another as PDF
1307
182
  Rendering home/index.pdf.pdfcraft within layouts/application
1308
- Rendered home/index.pdf.pdfcraft within layouts/application (30.9ms)
183
+ Rendered home/index.pdf.pdfcraft within layouts/application (4.3ms)
1309
184
  Rendering text template
1310
185
  Rendered text template (0.0ms)
1311
- Sent data contents.pdf (1.2ms)
1312
- Completed 200 OK in 41ms (Views: 40.9ms)
186
+ Sent data contents.pdf (0.5ms)
187
+ Completed 200 OK in 16ms (Views: 15.4ms)
1313
188
  ----------------------------------------------------
1314
189
  PdfRenderingTest: test_pdf_layout_can_be_set_in_view
1315
190
  ----------------------------------------------------
1316
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-06-04 07:42:11 -0400
191
+ Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2018-05-22 21:43:57 -0400
1317
192
  Processing by HomeController#pdf_layout as PDF
1318
193
  Rendering home/pdf_layout.pdf.pdfcraft within layouts/application
1319
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.7ms)
1320
- Rendering text template
1321
- Rendered text template (0.0ms)
1322
- Sent data contents.pdf (0.3ms)
1323
- Completed 200 OK in 7ms (Views: 7.1ms)
1324
- -------------------------------------------------------
1325
- PdfRenderingTest: test_pdf_rendering_can_access_helpers
1326
- -------------------------------------------------------
1327
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-06-04 07:42:11 -0400
1328
- Processing by HomeController#helpers as PDF
1329
- Rendering home/helpers.pdf.pdfcraft within layouts/application
1330
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.4ms)
1331
- Rendering text template
1332
- Rendered text template (0.0ms)
1333
- Sent data contents.pdf (0.5ms)
1334
- Completed 200 OK in 7ms (Views: 6.8ms)
1335
- -----------------------------------------------------
1336
- PdfRenderingTest: test_pdf_rendering_can_use_partials
1337
- -----------------------------------------------------
1338
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-06-04 07:42:11 -0400
1339
- Processing by HomeController#partials as PDF
1340
- Rendering home/partials.pdf.pdfcraft within layouts/application
1341
- Rendered home/_the_partial.pdf.pdfcraft (1.4ms)
1342
- Rendered home/partials.pdf.pdfcraft within layouts/application (4.7ms)
1343
- Rendering text template
1344
- Rendered text template (0.0ms)
1345
- Sent data contents.pdf (0.3ms)
1346
- Completed 200 OK in 10ms (Views: 9.8ms)
1347
- ---------------------------------------------------------------
1348
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
1349
- ---------------------------------------------------------------
1350
- Started GET "/another.pdf" for 127.0.0.1 at 2016-06-04 07:42:11 -0400
1351
- Processing by HomeController#another as PDF
1352
- Rendering home/index.pdf.pdfcraft within layouts/application
1353
- Rendered home/index.pdf.pdfcraft within layouts/application (2.3ms)
194
+ Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (4.7ms)
1354
195
  Rendering text template
1355
196
  Rendered text template (0.0ms)
1356
- Sent data contents.pdf (0.3ms)
1357
- Completed 200 OK in 8ms (Views: 7.5ms)
197
+ Sent data contents.pdf (0.4ms)
198
+ Completed 200 OK in 18ms (Views: 17.8ms)
1358
199
  ----------------------------------------------------------------------
1359
200
  PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
1360
201
  ----------------------------------------------------------------------
1361
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-06-04 07:42:11 -0400
202
+ Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2018-05-22 21:43:57 -0400
1362
203
  Processing by HomeController#pdf_layout as PDF
1363
204
  Rendering home/pdf_layout.pdf.pdfcraft within layouts/application
1364
205
  Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.6ms)
1365
206
  Rendering text template
1366
207
  Rendered text template (0.0ms)
1367
- Sent data contents.pdf (0.4ms)
1368
- Completed 200 OK in 8ms (Views: 7.6ms)
1369
- ----------------------------------------------------------------
1370
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
1371
- ----------------------------------------------------------------
1372
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-06-04 07:42:11 -0400
1373
- Processing by HomeController#renamed_var as PDF
1374
- Rendering home/renamed_var.pdf.pdfcraft
1375
- Rendered home/renamed_var.pdf.pdfcraft (1.8ms)
1376
- Rendering text template
1377
- Rendered text template (0.0ms)
1378
- Sent data contents.pdf (0.3ms)
1379
- Completed 200 OK in 4ms (Views: 3.9ms)
1380
- ------------------------
1381
- PdfcraftTest: test_truth
1382
- ------------------------
1383
- ----------------------------------------------------------------
1384
- ConfigurationTest: test_rendering_with_a_configured_pdf_variable
1385
- ----------------------------------------------------------------
1386
- Started GET "/renamed_var.pdf" for 127.0.0.1 at 2016-06-04 07:44:59 -0400
1387
- Processing by HomeController#renamed_var as PDF
1388
- Rendering home/renamed_var.pdf.pdfcraft
1389
- Rendered home/renamed_var.pdf.pdfcraft (30.2ms)
1390
- Rendering text template
1391
- Rendered text template (0.0ms)
1392
- Sent data contents.pdf (0.9ms)
1393
- Completed 200 OK in 35ms (Views: 34.5ms)
1394
- --------------------------------------------------------
1395
- PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
1396
- --------------------------------------------------------
1397
- Started GET "/home.pdf" for 127.0.0.1 at 2016-06-04 07:44:59 -0400
1398
- Processing by HomeController#index as PDF
1399
- Rendering home/index.pdf.pdfcraft within layouts/application
1400
- Rendered home/index.pdf.pdfcraft within layouts/application (1.7ms)
1401
- Rendering text template
1402
- Rendered text template (0.0ms)
1403
208
  Sent data contents.pdf (0.3ms)
1404
- Completed 200 OK in 7ms (Views: 6.9ms)
209
+ Completed 200 OK in 4ms (Views: 3.6ms)
1405
210
  -------------------------------------------------------
1406
211
  PdfRenderingTest: test_pdf_rendering_can_access_helpers
1407
212
  -------------------------------------------------------
1408
- Started GET "/helpers.pdf" for 127.0.0.1 at 2016-06-04 07:44:59 -0400
213
+ Started GET "/helpers.pdf" for 127.0.0.1 at 2018-05-22 21:43:57 -0400
1409
214
  Processing by HomeController#helpers as PDF
1410
215
  Rendering home/helpers.pdf.pdfcraft within layouts/application
1411
- Rendered home/helpers.pdf.pdfcraft within layouts/application (1.5ms)
1412
- Rendering text template
1413
- Rendered text template (0.0ms)
1414
- Sent data contents.pdf (0.3ms)
1415
- Completed 200 OK in 7ms (Views: 6.6ms)
1416
- ----------------------------------------------------------------------
1417
- PdfRenderingTest: test_pdf_can_use_rails_layouts_for_header_and_footer
1418
- ----------------------------------------------------------------------
1419
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-06-04 07:44:59 -0400
1420
- Processing by HomeController#pdf_layout as PDF
1421
- Rendering home/pdf_layout.pdf.pdfcraft within layouts/application
1422
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.8ms)
216
+ Rendered home/helpers.pdf.pdfcraft within layouts/application (1.9ms)
1423
217
  Rendering text template
1424
218
  Rendered text template (0.0ms)
1425
219
  Sent data contents.pdf (0.3ms)
1426
- Completed 200 OK in 7ms (Views: 7.2ms)
1427
- ----------------------------------------------------
1428
- PdfRenderingTest: test_pdf_layout_can_be_set_in_view
1429
- ----------------------------------------------------
1430
- Started GET "/pdf_layout.pdf" for 127.0.0.1 at 2016-06-04 07:44:59 -0400
1431
- Processing by HomeController#pdf_layout as PDF
1432
- Rendering home/pdf_layout.pdf.pdfcraft within layouts/application
1433
- Rendered home/pdf_layout.pdf.pdfcraft within layouts/application (1.7ms)
1434
- Rendering text template
1435
- Rendered text template (0.1ms)
1436
- Sent data contents.pdf (1.1ms)
1437
- Completed 200 OK in 8ms (Views: 7.6ms)
220
+ Completed 200 OK in 6ms (Views: 6.1ms)
1438
221
  -----------------------------------------------------
1439
222
  PdfRenderingTest: test_pdf_rendering_can_use_partials
1440
223
  -----------------------------------------------------
1441
- Started GET "/partials.pdf" for 127.0.0.1 at 2016-06-04 07:44:59 -0400
224
+ Started GET "/partials.pdf" for 127.0.0.1 at 2018-05-22 21:43:57 -0400
1442
225
  Processing by HomeController#partials as PDF
1443
226
  Rendering home/partials.pdf.pdfcraft within layouts/application
1444
- Rendered home/_the_partial.pdf.pdfcraft (1.2ms)
1445
- Rendered home/partials.pdf.pdfcraft within layouts/application (3.8ms)
227
+ Rendered home/_the_partial.pdf.pdfcraft (1.4ms)
228
+ Rendered home/partials.pdf.pdfcraft within layouts/application (5.3ms)
1446
229
  Rendering text template
1447
230
  Rendered text template (0.0ms)
1448
231
  Sent data contents.pdf (0.3ms)
1449
- Completed 200 OK in 9ms (Views: 8.5ms)
1450
- ---------------------------------------------------------------
1451
- PdfRenderingTest: test_pdf_renderer_uses_the_specified_template
1452
- ---------------------------------------------------------------
1453
- Started GET "/another.pdf" for 127.0.0.1 at 2016-06-04 07:44:59 -0400
1454
- Processing by HomeController#another as PDF
232
+ Completed 200 OK in 9ms (Views: 9.1ms)
233
+ --------------------------------------------------------
234
+ PdfRenderingTest: test_pdf_request_sends_a_pdf_as_a_file
235
+ --------------------------------------------------------
236
+ Started GET "/home.pdf" for 127.0.0.1 at 2018-05-22 21:43:57 -0400
237
+ Processing by HomeController#index as PDF
1455
238
  Rendering home/index.pdf.pdfcraft within layouts/application
1456
- Rendered home/index.pdf.pdfcraft within layouts/application (1.5ms)
239
+ Rendered home/index.pdf.pdfcraft within layouts/application (1.3ms)
1457
240
  Rendering text template
1458
241
  Rendered text template (0.0ms)
1459
- Sent data contents.pdf (0.3ms)
1460
- Completed 200 OK in 6ms (Views: 6.1ms)
1461
- ------------------------
1462
- PdfcraftTest: test_truth
1463
- ------------------------
242
+ Sent data contents.pdf (0.4ms)
243
+ Completed 200 OK in 4ms (Views: 3.5ms)