maildown 3.0.0 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/maildown.rb +2 -8
- data/lib/maildown/ext/action_mailer.rb +25 -3
- data/lib/maildown/handlers/markdown.rb +19 -8
- data/lib/maildown/markdown_engine.rb +3 -3
- data/lib/maildown/version.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +3806 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/A3/A3kbR-mx77BuTQCXH_ow0ly8c8774_qjKkbRwg7o7Z8.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ky/KyPopZ9bAZSzDxl0-5H4oSWt6v3Hscx-IqtKCez5N6M.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/LQ/LQc7CZbqyqSrstnlW82z5LYgsBPDE-bOnyAvkzwGyZE.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qs/QsuZC0N-5s9LoiQKU5bmb9ddCBVsqqcG23hRRSzaNzI.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sg/SgGPXJGAAT9BnlD8lOEY30CrwX2Ww8GNvkz1_06BUuY.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/XL/XL_FTz0ksBA62QtuUFTEXWp6sbxjcinWNxVRvwewdVQ.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/bG/bGAz7aV3zTfJzCyTFZJ3JHHiggWMmTL8_sjwIrZof48.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hN/hNuDCLtFB8vWAB97u08o2jUz_JOaHtcRL85mfok6rKE.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hj/hj8Ir9wcVSy1KYrnWu9bpD24vDhCG3tvt-nKbNxb1Wg.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/hz/hzfOEnv86cyXvfNc1ID57ERgXFQbUWy0mA_2kb8RMf8.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/lL/lLPqCyZWuBhuo1Cc2h2NkRzr8qk4bog-PvgUZj9eD9A.cache +0 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/oC/oCsZTGZyV4kH8Y4OeSDUdrwfkJFPzTODZjuBKZB8oGQ.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/q6/q6BYa32YJF11eGVapO4ouNl6gayPIsARgMavlzZmoi0.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/x7/x7KkTV3ibfIEysLB_ug5bfmnn2VLV_BldukPR3EoPBk.cache +2 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/xq/xqUVzvrduT5J0NftyOoRYuGT8PShk-KqKJrZbf_u63o.cache +1 -0
- data/test/dummy/tmp/cache/assets/sprockets/v3.0/zj/zjBh6TAy1PfMo7ob2ifDemYXiSU1gF4Hed-g-jXHYuQ.cache +0 -0
- data/test/integration/double_compile_test.rb +26 -0
- data/test/test_helper.rb +1 -1
- data/test/unit/markdown_engine_test.rb +7 -0
- metadata +54 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15216b9c3c117a02eb4b24b3f5c691054ce4303e2b46a86c19a05f712efc4bb6
|
4
|
+
data.tar.gz: 99bb1b84ac4125e38c96a257f9261270dd2fa35f118df07193c634bdac386823
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 34ec1dbcab97af0f7aa50603ddc113df11c9f8b4eccf42095193e038ac2b427aac44cfcc023842d18b6070487d007ca4dbe0a34875687a6ac271efdbf5a5832a
|
7
|
+
data.tar.gz: 86c864b03330f577406737517a5bd15afdb4cf496d2d07dafbc897b19047030ff9d1d8641ac176b365f8a9162717246060a3b39192eef2ca687a6cbd1b17f101
|
data/lib/maildown.rb
CHANGED
@@ -11,14 +11,8 @@ module Maildown
|
|
11
11
|
@allow_indentations = allow_indentations
|
12
12
|
end
|
13
13
|
|
14
|
-
def self.
|
15
|
-
|
16
|
-
@enable_layouts
|
17
|
-
end
|
18
|
-
|
19
|
-
def self.enable_layouts=(enable_layouts)
|
20
|
-
puts "Maildown.enable_layouts= is deprecated, setting this does nothing"
|
21
|
-
@enable_layouts = enable_layouts
|
14
|
+
def self.rails_6?
|
15
|
+
@rails_6 ||= Rails.version > "6"
|
22
16
|
end
|
23
17
|
end
|
24
18
|
|
@@ -45,10 +45,32 @@ class ActionMailer::Base
|
|
45
45
|
return templates if templates.first.handler != Maildown::Handlers::Markdown
|
46
46
|
|
47
47
|
html_template = templates.first
|
48
|
-
text_template = html_template.dup
|
49
|
-
formats = html_template.formats.dup.tap { |f| f.delete(:html) }
|
50
48
|
|
51
|
-
|
49
|
+
# Cached template is already defined
|
50
|
+
if html_template.instance_variable_defined?(:"@maildown_text_template")
|
51
|
+
text_template = html_template.instance_variable_get(:"@maildown_text_template")
|
52
|
+
return [html_template, text_template]
|
53
|
+
end
|
54
|
+
|
55
|
+
if Maildown.rails_6?
|
56
|
+
text_template = html_template
|
57
|
+
.class
|
58
|
+
.new(
|
59
|
+
html_template.source,
|
60
|
+
html_template.identifier,
|
61
|
+
html_template.handler,
|
62
|
+
format: :text,
|
63
|
+
locals: html_template.locals
|
64
|
+
)
|
65
|
+
else
|
66
|
+
text_template = html_template.dup
|
67
|
+
formats = html_template.formats.dup.tap { |f| f.delete(:html) }
|
68
|
+
|
69
|
+
text_template.formats = formats
|
70
|
+
end
|
71
|
+
|
72
|
+
html_template.instance_variable_set(:"@maildown_text_template", text_template)
|
73
|
+
|
52
74
|
return [html_template, text_template]
|
53
75
|
end
|
54
76
|
end
|
@@ -24,16 +24,28 @@ module Maildown
|
|
24
24
|
# This handler takes care of both text and html email templates
|
25
25
|
# by inspectig the available `"formats"` and rendering the
|
26
26
|
# markdown to HTML if one of the formats is `:html`.
|
27
|
-
def self.call(template)
|
28
|
-
#
|
29
|
-
|
27
|
+
def self.call(template, source = nil)
|
28
|
+
# The interface of template handlers changed in Rails 6.0 and the
|
29
|
+
# source is passed as an argument. This check is here for compatibility
|
30
|
+
# with Rails 5.0+.
|
31
|
+
source ||= template.source
|
30
32
|
|
31
|
-
|
33
|
+
# Match beginning whitespace but not newline
|
34
|
+
# http://rubular.com/r/uCXQ58OOC8
|
35
|
+
source.gsub!(/^[^\S\n]+/, ''.freeze) if Maildown.allow_indentation
|
32
36
|
|
33
|
-
if
|
34
|
-
|
37
|
+
if Maildown.rails_6?
|
38
|
+
compiled_source = erb_handler.call(template, source)
|
39
|
+
is_html = (template.format != :text)
|
35
40
|
else
|
36
|
-
|
41
|
+
compiled_source = erb_handler.call(template)
|
42
|
+
is_html = template.formats.include?(:html)
|
43
|
+
end
|
44
|
+
|
45
|
+
if is_html
|
46
|
+
"Maildown::MarkdownEngine.to_html(begin;#{compiled_source}; end)"
|
47
|
+
else
|
48
|
+
"Maildown::MarkdownEngine.to_text(begin;#{compiled_source}; end)"
|
37
49
|
end
|
38
50
|
end
|
39
51
|
end
|
@@ -56,4 +68,3 @@ ActionView::Template.register_template_handler :"md", Maildown::Handlers::Ma
|
|
56
68
|
# to allow rails to even attempt to process the file, it needs this
|
57
69
|
# handler with ".md.erb" to be registered.
|
58
70
|
ActionView::Template.register_template_handler :"md.erb", Maildown::Handlers::Markdown
|
59
|
-
|
@@ -49,9 +49,7 @@ module Maildown
|
|
49
49
|
end
|
50
50
|
|
51
51
|
def self.default_html_block
|
52
|
-
|
53
|
-
|
54
|
-
->(string) { Kramdown::Document.new(string).to_html }
|
52
|
+
->(string) { Kramdown::Document.new(string, input: "GFM").to_html }
|
55
53
|
end
|
56
54
|
|
57
55
|
def self.default_text_block
|
@@ -59,3 +57,5 @@ module Maildown
|
|
59
57
|
end
|
60
58
|
end
|
61
59
|
end
|
60
|
+
|
61
|
+
Maildown::MarkdownEngine.autoload(:"Kramdown", "kramdown")
|
data/lib/maildown/version.rb
CHANGED
File without changes
|
data/test/dummy/log/test.log
CHANGED
@@ -26388,3 +26388,3809 @@ Content-Transfer-Encoding: 7bit
|
|
26388
26388
|
|
26389
26389
|
----==_mimepart_5aa98f563dfce_146d33ff750840ee08883f--
|
26390
26390
|
|
26391
|
+
---------------------------------------
|
26392
|
+
MarkdownEngineTest: test_can_set_engine
|
26393
|
+
---------------------------------------
|
26394
|
+
----------------------------------------------------------------
|
26395
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
26396
|
+
----------------------------------------------------------------
|
26397
|
+
----------------------------------------------------------
|
26398
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
26399
|
+
----------------------------------------------------------
|
26400
|
+
----------------------------------------------------
|
26401
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
26402
|
+
----------------------------------------------------
|
26403
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
26404
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (1.3ms)
|
26405
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
26406
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (0.1ms)
|
26407
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 173.8ms
|
26408
|
+
Sent mail to foo@example.com (7.8ms)
|
26409
|
+
Date: Wed, 14 Mar 2018 22:41:05 -0500
|
26410
|
+
From: from@example.com
|
26411
|
+
Reply-To: noreply@schneems.com
|
26412
|
+
To: foo@example.com
|
26413
|
+
Message-ID: <5aa9eb51a75fe_16c893fd2a2840ddc76325@rschneeman-ltm4.internal.salesforce.com.mail>
|
26414
|
+
Subject: hello world
|
26415
|
+
Mime-Version: 1.0
|
26416
|
+
Content-Type: multipart/alternative;
|
26417
|
+
boundary="--==_mimepart_5aa9eb51a5e04_16c893fd2a2840ddc762eb";
|
26418
|
+
charset=UTF-8
|
26419
|
+
Content-Transfer-Encoding: 7bit
|
26420
|
+
|
26421
|
+
|
26422
|
+
----==_mimepart_5aa9eb51a5e04_16c893fd2a2840ddc762eb
|
26423
|
+
Content-Type: text/plain;
|
26424
|
+
charset=UTF-8
|
26425
|
+
Content-Transfer-Encoding: 7bit
|
26426
|
+
|
26427
|
+
## Leading
|
26428
|
+
|
26429
|
+
----==_mimepart_5aa9eb51a5e04_16c893fd2a2840ddc762eb
|
26430
|
+
Content-Type: text/html;
|
26431
|
+
charset=UTF-8
|
26432
|
+
Content-Transfer-Encoding: 7bit
|
26433
|
+
|
26434
|
+
<h2 id="leading">Leading</h2>
|
26435
|
+
|
26436
|
+
----==_mimepart_5aa9eb51a5e04_16c893fd2a2840ddc762eb--
|
26437
|
+
|
26438
|
+
---------------------------------------------------
|
26439
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
26440
|
+
---------------------------------------------------
|
26441
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
26442
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (3.2ms)
|
26443
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
26444
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (0.2ms)
|
26445
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 28.1ms
|
26446
|
+
Sent mail to foo@example.com (1.9ms)
|
26447
|
+
Date: Wed, 14 Mar 2018 22:41:05 -0500
|
26448
|
+
From: from@example.com
|
26449
|
+
Reply-To: noreply@schneems.com
|
26450
|
+
To: foo@example.com
|
26451
|
+
Message-ID: <5aa9eb51af35e_16c893fd2a2840ddc76523@rschneeman-ltm4.internal.salesforce.com.mail>
|
26452
|
+
Subject: hello world
|
26453
|
+
Mime-Version: 1.0
|
26454
|
+
Content-Type: multipart/alternative;
|
26455
|
+
boundary="--==_mimepart_5aa9eb51aee61_16c893fd2a2840ddc764f3";
|
26456
|
+
charset=UTF-8
|
26457
|
+
Content-Transfer-Encoding: 7bit
|
26458
|
+
|
26459
|
+
|
26460
|
+
----==_mimepart_5aa9eb51aee61_16c893fd2a2840ddc764f3
|
26461
|
+
Content-Type: text/plain;
|
26462
|
+
charset=UTF-8
|
26463
|
+
Content-Transfer-Encoding: 7bit
|
26464
|
+
|
26465
|
+
## Leading again
|
26466
|
+
|
26467
|
+
----==_mimepart_5aa9eb51aee61_16c893fd2a2840ddc764f3
|
26468
|
+
Content-Type: text/html;
|
26469
|
+
charset=UTF-8
|
26470
|
+
Content-Transfer-Encoding: 7bit
|
26471
|
+
|
26472
|
+
<pre><code> ## Leading again
|
26473
|
+
</code></pre>
|
26474
|
+
|
26475
|
+
----==_mimepart_5aa9eb51aee61_16c893fd2a2840ddc764f3--
|
26476
|
+
|
26477
|
+
----------------------------------------------
|
26478
|
+
TemplateHandlerTest: test_.md_template_handler
|
26479
|
+
----------------------------------------------
|
26480
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2018-03-14 22:41:05 -0500
|
26481
|
+
Processing by HandlersController#show as HTML
|
26482
|
+
Parameters: {"id"=>"plain_markdown"}
|
26483
|
+
Rendering handlers/plain_markdown.html.md within layouts/application
|
26484
|
+
Rendered handlers/plain_markdown.html.md within layouts/application (0.8ms)
|
26485
|
+
Completed 200 OK in 9ms (Views: 8.4ms)
|
26486
|
+
----------------------------------------
|
26487
|
+
TemplateHandlerTest: test_dual_templates
|
26488
|
+
----------------------------------------
|
26489
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
26490
|
+
Rendered user_no_layout_mailer/contact.md.erb (0.8ms)
|
26491
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
26492
|
+
Rendered user_no_layout_mailer/contact.md.erb (0.2ms)
|
26493
|
+
UserNoLayoutMailer#contact: processed outbound mail in 27.6ms
|
26494
|
+
Sent mail to foo@example.com (2.9ms)
|
26495
|
+
Date: Wed, 14 Mar 2018 22:41:05 -0500
|
26496
|
+
From: from@example.com
|
26497
|
+
Reply-To: noreply@schneems.com
|
26498
|
+
To: foo@example.com
|
26499
|
+
Message-ID: <5aa9eb51c2c22_16c893fd2a2840ddc767ec@rschneeman-ltm4.internal.salesforce.com.mail>
|
26500
|
+
Subject: hello world
|
26501
|
+
Mime-Version: 1.0
|
26502
|
+
Content-Type: multipart/alternative;
|
26503
|
+
boundary="--==_mimepart_5aa9eb51c2417_16c893fd2a2840ddc766d8";
|
26504
|
+
charset=UTF-8
|
26505
|
+
Content-Transfer-Encoding: 7bit
|
26506
|
+
|
26507
|
+
|
26508
|
+
----==_mimepart_5aa9eb51c2417_16c893fd2a2840ddc766d8
|
26509
|
+
Content-Type: text/plain;
|
26510
|
+
charset=UTF-8
|
26511
|
+
Content-Transfer-Encoding: 7bit
|
26512
|
+
|
26513
|
+
Dual templates **rock**!
|
26514
|
+
|
26515
|
+
----==_mimepart_5aa9eb51c2417_16c893fd2a2840ddc766d8
|
26516
|
+
Content-Type: text/html;
|
26517
|
+
charset=UTF-8
|
26518
|
+
Content-Transfer-Encoding: 7bit
|
26519
|
+
|
26520
|
+
<p>Dual templates <strong>rock</strong>!</p>
|
26521
|
+
|
26522
|
+
----==_mimepart_5aa9eb51c2417_16c893fd2a2840ddc766d8--
|
26523
|
+
|
26524
|
+
----------------------------------------------
|
26525
|
+
ExtActionMailerTest: test_monkeypatch_location
|
26526
|
+
----------------------------------------------
|
26527
|
+
-------------------------------------
|
26528
|
+
LayoutsTest: test_layout_renders_fine
|
26529
|
+
-------------------------------------
|
26530
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
26531
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.7ms)
|
26532
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
26533
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.2ms)
|
26534
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 31.3ms
|
26535
|
+
Sent mail to foo@example.com (2.0ms)
|
26536
|
+
Date: Wed, 14 Mar 2018 22:41:05 -0500
|
26537
|
+
From: from@example.com
|
26538
|
+
Reply-To: noreply@schneems.com
|
26539
|
+
To: foo@example.com
|
26540
|
+
Message-ID: <5aa9eb51cc1f3_16c893fd2a2840ddc76947@rschneeman-ltm4.internal.salesforce.com.mail>
|
26541
|
+
Subject: hello world
|
26542
|
+
Mime-Version: 1.0
|
26543
|
+
Content-Type: multipart/alternative;
|
26544
|
+
boundary="--==_mimepart_5aa9eb51cbd1a_16c893fd2a2840ddc7682e";
|
26545
|
+
charset=UTF-8
|
26546
|
+
Content-Transfer-Encoding: 7bit
|
26547
|
+
|
26548
|
+
|
26549
|
+
----==_mimepart_5aa9eb51cbd1a_16c893fd2a2840ddc7682e
|
26550
|
+
Content-Type: text/plain;
|
26551
|
+
charset=UTF-8
|
26552
|
+
Content-Transfer-Encoding: 7bit
|
26553
|
+
|
26554
|
+
TEXT## Welcome!
|
26555
|
+
|
26556
|
+
|
26557
|
+
----==_mimepart_5aa9eb51cbd1a_16c893fd2a2840ddc7682e
|
26558
|
+
Content-Type: text/html;
|
26559
|
+
charset=UTF-8
|
26560
|
+
Content-Transfer-Encoding: 7bit
|
26561
|
+
|
26562
|
+
HTML<h2 id="welcome">Welcome!</h2>
|
26563
|
+
|
26564
|
+
----==_mimepart_5aa9eb51cbd1a_16c893fd2a2840ddc7682e--
|
26565
|
+
|
26566
|
+
---------------------------
|
26567
|
+
LayoutsTest: test_no_layout
|
26568
|
+
---------------------------
|
26569
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26570
|
+
Rendered user_no_layout_mailer/welcome.md+erb (1.3ms)
|
26571
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26572
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.2ms)
|
26573
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 30.8ms
|
26574
|
+
Sent mail to foo@example.com (2.2ms)
|
26575
|
+
Date: Wed, 14 Mar 2018 22:41:05 -0500
|
26576
|
+
From: from@example.com
|
26577
|
+
Reply-To: noreply@schneems.com
|
26578
|
+
To: foo@example.com
|
26579
|
+
Message-ID: <5aa9eb51d465f_16c893fd2a2840ddc77174@rschneeman-ltm4.internal.salesforce.com.mail>
|
26580
|
+
Subject: hello world
|
26581
|
+
Mime-Version: 1.0
|
26582
|
+
Content-Type: multipart/alternative;
|
26583
|
+
boundary="--==_mimepart_5aa9eb51d379f_16c893fd2a2840ddc770ec";
|
26584
|
+
charset=UTF-8
|
26585
|
+
Content-Transfer-Encoding: 7bit
|
26586
|
+
|
26587
|
+
|
26588
|
+
----==_mimepart_5aa9eb51d379f_16c893fd2a2840ddc770ec
|
26589
|
+
Content-Type: text/plain;
|
26590
|
+
charset=UTF-8
|
26591
|
+
Content-Transfer-Encoding: 7bit
|
26592
|
+
|
26593
|
+
## Welcome!
|
26594
|
+
|
26595
|
+
----==_mimepart_5aa9eb51d379f_16c893fd2a2840ddc770ec
|
26596
|
+
Content-Type: text/html;
|
26597
|
+
charset=UTF-8
|
26598
|
+
Content-Transfer-Encoding: 7bit
|
26599
|
+
|
26600
|
+
<h2 id="welcome">Welcome!</h2>
|
26601
|
+
|
26602
|
+
----==_mimepart_5aa9eb51d379f_16c893fd2a2840ddc770ec--
|
26603
|
+
|
26604
|
+
----------------------------------------------
|
26605
|
+
ExtActionMailerTest: test_monkeypatch_location
|
26606
|
+
----------------------------------------------
|
26607
|
+
----------------------------------------
|
26608
|
+
TemplateHandlerTest: test_dual_templates
|
26609
|
+
----------------------------------------
|
26610
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
26611
|
+
Rendered user_no_layout_mailer/contact.md.erb (50.8ms)
|
26612
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
26613
|
+
Rendered user_no_layout_mailer/contact.md.erb (0.2ms)
|
26614
|
+
UserNoLayoutMailer#contact: processed outbound mail in 232.2ms
|
26615
|
+
Sent mail to foo@example.com (11.1ms)
|
26616
|
+
Date: Wed, 14 Mar 2018 22:43:12 -0500
|
26617
|
+
From: from@example.com
|
26618
|
+
Reply-To: noreply@schneems.com
|
26619
|
+
To: foo@example.com
|
26620
|
+
Message-ID: <5aa9ebd0290e6_16d103fc64a840ddc16767@rschneeman-ltm4.internal.salesforce.com.mail>
|
26621
|
+
Subject: hello world
|
26622
|
+
Mime-Version: 1.0
|
26623
|
+
Content-Type: multipart/alternative;
|
26624
|
+
boundary="--==_mimepart_5aa9ebd026f7d_16d103fc64a840ddc16621";
|
26625
|
+
charset=UTF-8
|
26626
|
+
Content-Transfer-Encoding: 7bit
|
26627
|
+
|
26628
|
+
|
26629
|
+
----==_mimepart_5aa9ebd026f7d_16d103fc64a840ddc16621
|
26630
|
+
Content-Type: text/plain;
|
26631
|
+
charset=UTF-8
|
26632
|
+
Content-Transfer-Encoding: 7bit
|
26633
|
+
|
26634
|
+
Dual templates **rock**!
|
26635
|
+
|
26636
|
+
----==_mimepart_5aa9ebd026f7d_16d103fc64a840ddc16621
|
26637
|
+
Content-Type: text/html;
|
26638
|
+
charset=UTF-8
|
26639
|
+
Content-Transfer-Encoding: 7bit
|
26640
|
+
|
26641
|
+
<p>Dual templates <strong>rock</strong>!</p>
|
26642
|
+
|
26643
|
+
----==_mimepart_5aa9ebd026f7d_16d103fc64a840ddc16621--
|
26644
|
+
|
26645
|
+
----------------------------------------------
|
26646
|
+
TemplateHandlerTest: test_.md_template_handler
|
26647
|
+
----------------------------------------------
|
26648
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2018-03-14 22:43:12 -0500
|
26649
|
+
Processing by HandlersController#show as HTML
|
26650
|
+
Parameters: {"id"=>"plain_markdown"}
|
26651
|
+
Rendering handlers/plain_markdown.html.md within layouts/application
|
26652
|
+
Rendered handlers/plain_markdown.html.md within layouts/application (0.6ms)
|
26653
|
+
Completed 200 OK in 7ms (Views: 7.3ms)
|
26654
|
+
---------------------------------------------------
|
26655
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
26656
|
+
---------------------------------------------------
|
26657
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
26658
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (3.2ms)
|
26659
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
26660
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (0.2ms)
|
26661
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 31.0ms
|
26662
|
+
Sent mail to foo@example.com (2.6ms)
|
26663
|
+
Date: Wed, 14 Mar 2018 22:43:12 -0500
|
26664
|
+
From: from@example.com
|
26665
|
+
Reply-To: noreply@schneems.com
|
26666
|
+
To: foo@example.com
|
26667
|
+
Message-ID: <5aa9ebd03d756_16d103fc64a840ddc169d9@rschneeman-ltm4.internal.salesforce.com.mail>
|
26668
|
+
Subject: hello world
|
26669
|
+
Mime-Version: 1.0
|
26670
|
+
Content-Type: multipart/alternative;
|
26671
|
+
boundary="--==_mimepart_5aa9ebd03c6b3_16d103fc64a840ddc1689c";
|
26672
|
+
charset=UTF-8
|
26673
|
+
Content-Transfer-Encoding: 7bit
|
26674
|
+
|
26675
|
+
|
26676
|
+
----==_mimepart_5aa9ebd03c6b3_16d103fc64a840ddc1689c
|
26677
|
+
Content-Type: text/plain;
|
26678
|
+
charset=UTF-8
|
26679
|
+
Content-Transfer-Encoding: 7bit
|
26680
|
+
|
26681
|
+
## Leading again
|
26682
|
+
|
26683
|
+
----==_mimepart_5aa9ebd03c6b3_16d103fc64a840ddc1689c
|
26684
|
+
Content-Type: text/html;
|
26685
|
+
charset=UTF-8
|
26686
|
+
Content-Transfer-Encoding: 7bit
|
26687
|
+
|
26688
|
+
<pre><code> ## Leading again
|
26689
|
+
</code></pre>
|
26690
|
+
|
26691
|
+
----==_mimepart_5aa9ebd03c6b3_16d103fc64a840ddc1689c--
|
26692
|
+
|
26693
|
+
----------------------------------------------------
|
26694
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
26695
|
+
----------------------------------------------------
|
26696
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
26697
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (0.9ms)
|
26698
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
26699
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (0.1ms)
|
26700
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 29.0ms
|
26701
|
+
Sent mail to foo@example.com (2.7ms)
|
26702
|
+
Date: Wed, 14 Mar 2018 22:43:12 -0500
|
26703
|
+
From: from@example.com
|
26704
|
+
Reply-To: noreply@schneems.com
|
26705
|
+
To: foo@example.com
|
26706
|
+
Message-ID: <5aa9ebd045740_16d103fc64a840ddc17158@rschneeman-ltm4.internal.salesforce.com.mail>
|
26707
|
+
Subject: hello world
|
26708
|
+
Mime-Version: 1.0
|
26709
|
+
Content-Type: multipart/alternative;
|
26710
|
+
boundary="--==_mimepart_5aa9ebd044e4f_16d103fc64a840ddc1701";
|
26711
|
+
charset=UTF-8
|
26712
|
+
Content-Transfer-Encoding: 7bit
|
26713
|
+
|
26714
|
+
|
26715
|
+
----==_mimepart_5aa9ebd044e4f_16d103fc64a840ddc1701
|
26716
|
+
Content-Type: text/plain;
|
26717
|
+
charset=UTF-8
|
26718
|
+
Content-Transfer-Encoding: 7bit
|
26719
|
+
|
26720
|
+
## Leading
|
26721
|
+
|
26722
|
+
----==_mimepart_5aa9ebd044e4f_16d103fc64a840ddc1701
|
26723
|
+
Content-Type: text/html;
|
26724
|
+
charset=UTF-8
|
26725
|
+
Content-Transfer-Encoding: 7bit
|
26726
|
+
|
26727
|
+
<h2 id="leading">Leading</h2>
|
26728
|
+
|
26729
|
+
----==_mimepart_5aa9ebd044e4f_16d103fc64a840ddc1701--
|
26730
|
+
|
26731
|
+
---------------------------------
|
26732
|
+
DoubleCompileTest: test_no_layout
|
26733
|
+
---------------------------------
|
26734
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26735
|
+
Rendered user_no_layout_mailer/welcome.md+erb (1.3ms)
|
26736
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26737
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.2ms)
|
26738
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 29.3ms
|
26739
|
+
Sent mail to foo@example.com (2.2ms)
|
26740
|
+
Date: Wed, 14 Mar 2018 22:43:12 -0500
|
26741
|
+
From: from@example.com
|
26742
|
+
Reply-To: noreply@schneems.com
|
26743
|
+
To: foo@example.com
|
26744
|
+
Message-ID: <5aa9ebd04dd8d_16d103fc64a840ddc17313@rschneeman-ltm4.internal.salesforce.com.mail>
|
26745
|
+
Subject: hello world
|
26746
|
+
Mime-Version: 1.0
|
26747
|
+
Content-Type: multipart/alternative;
|
26748
|
+
boundary="--==_mimepart_5aa9ebd04d7dd_16d103fc64a840ddc1723c";
|
26749
|
+
charset=UTF-8
|
26750
|
+
Content-Transfer-Encoding: 7bit
|
26751
|
+
|
26752
|
+
|
26753
|
+
----==_mimepart_5aa9ebd04d7dd_16d103fc64a840ddc1723c
|
26754
|
+
Content-Type: text/plain;
|
26755
|
+
charset=UTF-8
|
26756
|
+
Content-Transfer-Encoding: 7bit
|
26757
|
+
|
26758
|
+
## Welcome!
|
26759
|
+
|
26760
|
+
----==_mimepart_5aa9ebd04d7dd_16d103fc64a840ddc1723c
|
26761
|
+
Content-Type: text/html;
|
26762
|
+
charset=UTF-8
|
26763
|
+
Content-Transfer-Encoding: 7bit
|
26764
|
+
|
26765
|
+
<h2 id="welcome">Welcome!</h2>
|
26766
|
+
|
26767
|
+
----==_mimepart_5aa9ebd04d7dd_16d103fc64a840ddc1723c--
|
26768
|
+
|
26769
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26770
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.4ms)
|
26771
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26772
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.3ms)
|
26773
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 2.1ms
|
26774
|
+
Sent mail to foo@example.com (1.9ms)
|
26775
|
+
Date: Wed, 14 Mar 2018 22:43:12 -0500
|
26776
|
+
From: from@example.com
|
26777
|
+
Reply-To: noreply@schneems.com
|
26778
|
+
To: foo@example.com
|
26779
|
+
Message-ID: <5aa9ebd04ef8c_16d103fc64a840ddc175c7@rschneeman-ltm4.internal.salesforce.com.mail>
|
26780
|
+
Subject: hello world
|
26781
|
+
Mime-Version: 1.0
|
26782
|
+
Content-Type: multipart/alternative;
|
26783
|
+
boundary="--==_mimepart_5aa9ebd04eaa7_16d103fc64a840ddc174fd";
|
26784
|
+
charset=UTF-8
|
26785
|
+
Content-Transfer-Encoding: 7bit
|
26786
|
+
|
26787
|
+
|
26788
|
+
----==_mimepart_5aa9ebd04eaa7_16d103fc64a840ddc174fd
|
26789
|
+
Content-Type: text/html;
|
26790
|
+
charset=UTF-8
|
26791
|
+
Content-Transfer-Encoding: 7bit
|
26792
|
+
|
26793
|
+
<h2 id="welcome">Welcome!</h2>
|
26794
|
+
|
26795
|
+
----==_mimepart_5aa9ebd04eaa7_16d103fc64a840ddc174fd
|
26796
|
+
Content-Type: text/html;
|
26797
|
+
charset=UTF-8
|
26798
|
+
Content-Transfer-Encoding: 7bit
|
26799
|
+
|
26800
|
+
<h2 id="welcome">Welcome!</h2>
|
26801
|
+
|
26802
|
+
----==_mimepart_5aa9ebd04eaa7_16d103fc64a840ddc174fd--
|
26803
|
+
|
26804
|
+
-------------------------------------
|
26805
|
+
LayoutsTest: test_layout_renders_fine
|
26806
|
+
-------------------------------------
|
26807
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
26808
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.8ms)
|
26809
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
26810
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.2ms)
|
26811
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 32.9ms
|
26812
|
+
Sent mail to foo@example.com (2.3ms)
|
26813
|
+
Date: Wed, 14 Mar 2018 22:43:12 -0500
|
26814
|
+
From: from@example.com
|
26815
|
+
Reply-To: noreply@schneems.com
|
26816
|
+
To: foo@example.com
|
26817
|
+
Message-ID: <5aa9ebd0587e8_16d103fc64a840ddc17710@rschneeman-ltm4.internal.salesforce.com.mail>
|
26818
|
+
Subject: hello world
|
26819
|
+
Mime-Version: 1.0
|
26820
|
+
Content-Type: multipart/alternative;
|
26821
|
+
boundary="--==_mimepart_5aa9ebd058177_16d103fc64a840ddc176c5";
|
26822
|
+
charset=UTF-8
|
26823
|
+
Content-Transfer-Encoding: 7bit
|
26824
|
+
|
26825
|
+
|
26826
|
+
----==_mimepart_5aa9ebd058177_16d103fc64a840ddc176c5
|
26827
|
+
Content-Type: text/plain;
|
26828
|
+
charset=UTF-8
|
26829
|
+
Content-Transfer-Encoding: 7bit
|
26830
|
+
|
26831
|
+
TEXT## Welcome!
|
26832
|
+
|
26833
|
+
|
26834
|
+
----==_mimepart_5aa9ebd058177_16d103fc64a840ddc176c5
|
26835
|
+
Content-Type: text/html;
|
26836
|
+
charset=UTF-8
|
26837
|
+
Content-Transfer-Encoding: 7bit
|
26838
|
+
|
26839
|
+
HTML<h2 id="welcome">Welcome!</h2>
|
26840
|
+
|
26841
|
+
----==_mimepart_5aa9ebd058177_16d103fc64a840ddc176c5--
|
26842
|
+
|
26843
|
+
---------------------------
|
26844
|
+
LayoutsTest: test_no_layout
|
26845
|
+
---------------------------
|
26846
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26847
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.5ms)
|
26848
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26849
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.4ms)
|
26850
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 2.1ms
|
26851
|
+
Sent mail to foo@example.com (2.3ms)
|
26852
|
+
Date: Wed, 14 Mar 2018 22:43:12 -0500
|
26853
|
+
From: from@example.com
|
26854
|
+
Reply-To: noreply@schneems.com
|
26855
|
+
To: foo@example.com
|
26856
|
+
Message-ID: <5aa9ebd059c5c_16d103fc64a840ddc17919@rschneeman-ltm4.internal.salesforce.com.mail>
|
26857
|
+
Subject: hello world
|
26858
|
+
Mime-Version: 1.0
|
26859
|
+
Content-Type: multipart/alternative;
|
26860
|
+
boundary="--==_mimepart_5aa9ebd059746_16d103fc64a840ddc178e2";
|
26861
|
+
charset=UTF-8
|
26862
|
+
Content-Transfer-Encoding: 7bit
|
26863
|
+
|
26864
|
+
|
26865
|
+
----==_mimepart_5aa9ebd059746_16d103fc64a840ddc178e2
|
26866
|
+
Content-Type: text/html;
|
26867
|
+
charset=UTF-8
|
26868
|
+
Content-Transfer-Encoding: 7bit
|
26869
|
+
|
26870
|
+
<h2 id="welcome">Welcome!</h2>
|
26871
|
+
|
26872
|
+
----==_mimepart_5aa9ebd059746_16d103fc64a840ddc178e2
|
26873
|
+
Content-Type: text/html;
|
26874
|
+
charset=UTF-8
|
26875
|
+
Content-Transfer-Encoding: 7bit
|
26876
|
+
|
26877
|
+
<h2 id="welcome">Welcome!</h2>
|
26878
|
+
|
26879
|
+
----==_mimepart_5aa9ebd059746_16d103fc64a840ddc178e2--
|
26880
|
+
|
26881
|
+
---------------------------------------
|
26882
|
+
MarkdownEngineTest: test_can_set_engine
|
26883
|
+
---------------------------------------
|
26884
|
+
----------------------------------------------------------
|
26885
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
26886
|
+
----------------------------------------------------------
|
26887
|
+
----------------------------------------------------------------
|
26888
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
26889
|
+
----------------------------------------------------------------
|
26890
|
+
-------------------------------------------------------------
|
26891
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
26892
|
+
-------------------------------------------------------------
|
26893
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26894
|
+
Rendered user_no_layout_mailer/welcome.md+erb (34.8ms)
|
26895
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26896
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.2ms)
|
26897
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 61.8ms
|
26898
|
+
Sent mail to foo@example.com (4.2ms)
|
26899
|
+
Date: Wed, 14 Mar 2018 22:43:44 -0500
|
26900
|
+
From: from@example.com
|
26901
|
+
Reply-To: noreply@schneems.com
|
26902
|
+
To: foo@example.com
|
26903
|
+
Message-ID: <5aa9ebf02770f_16d5c3ff4ac43edd444de@rschneeman-ltm4.internal.salesforce.com.mail>
|
26904
|
+
Subject: hello world
|
26905
|
+
Mime-Version: 1.0
|
26906
|
+
Content-Type: multipart/alternative;
|
26907
|
+
boundary="--==_mimepart_5aa9ebf026b9d_16d5c3ff4ac43edd4434b";
|
26908
|
+
charset=UTF-8
|
26909
|
+
Content-Transfer-Encoding: 7bit
|
26910
|
+
|
26911
|
+
|
26912
|
+
----==_mimepart_5aa9ebf026b9d_16d5c3ff4ac43edd4434b
|
26913
|
+
Content-Type: text/plain;
|
26914
|
+
charset=UTF-8
|
26915
|
+
Content-Transfer-Encoding: 7bit
|
26916
|
+
|
26917
|
+
## Welcome!
|
26918
|
+
|
26919
|
+
----==_mimepart_5aa9ebf026b9d_16d5c3ff4ac43edd4434b
|
26920
|
+
Content-Type: text/html;
|
26921
|
+
charset=UTF-8
|
26922
|
+
Content-Transfer-Encoding: 7bit
|
26923
|
+
|
26924
|
+
<h2 id="welcome">Welcome!</h2>
|
26925
|
+
|
26926
|
+
----==_mimepart_5aa9ebf026b9d_16d5c3ff4ac43edd4434b--
|
26927
|
+
|
26928
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26929
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.3ms)
|
26930
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
26931
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.0ms)
|
26932
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.7ms
|
26933
|
+
Sent mail to foo@example.com (3.5ms)
|
26934
|
+
Date: Wed, 14 Mar 2018 22:43:44 -0500
|
26935
|
+
From: from@example.com
|
26936
|
+
Reply-To: noreply@schneems.com
|
26937
|
+
To: foo@example.com
|
26938
|
+
Message-ID: <5aa9ebf028ffe_16d5c3ff4ac43edd446b3@rschneeman-ltm4.internal.salesforce.com.mail>
|
26939
|
+
Subject: hello world
|
26940
|
+
Mime-Version: 1.0
|
26941
|
+
Content-Type: multipart/alternative;
|
26942
|
+
boundary="--==_mimepart_5aa9ebf028482_16d5c3ff4ac43edd4457c";
|
26943
|
+
charset=UTF-8
|
26944
|
+
Content-Transfer-Encoding: 7bit
|
26945
|
+
|
26946
|
+
|
26947
|
+
----==_mimepart_5aa9ebf028482_16d5c3ff4ac43edd4457c
|
26948
|
+
Content-Type: text/plain;
|
26949
|
+
charset=UTF-8
|
26950
|
+
Content-Transfer-Encoding: 7bit
|
26951
|
+
|
26952
|
+
## Welcome!
|
26953
|
+
|
26954
|
+
----==_mimepart_5aa9ebf028482_16d5c3ff4ac43edd4457c
|
26955
|
+
Content-Type: text/html;
|
26956
|
+
charset=UTF-8
|
26957
|
+
Content-Transfer-Encoding: 7bit
|
26958
|
+
|
26959
|
+
<h2 id="welcome">Welcome!</h2>
|
26960
|
+
|
26961
|
+
----==_mimepart_5aa9ebf028482_16d5c3ff4ac43edd4457c--
|
26962
|
+
|
26963
|
+
---------------------------------------------------
|
26964
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
26965
|
+
---------------------------------------------------
|
26966
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
26967
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (1.9ms)
|
26968
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
26969
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (0.2ms)
|
26970
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 28.3ms
|
26971
|
+
Sent mail to foo@example.com (2.3ms)
|
26972
|
+
Date: Wed, 14 Mar 2018 22:43:44 -0500
|
26973
|
+
From: from@example.com
|
26974
|
+
Reply-To: noreply@schneems.com
|
26975
|
+
To: foo@example.com
|
26976
|
+
Message-ID: <5aa9ebf0309d6_16d5c3ff4ac43edd44878@rschneeman-ltm4.internal.salesforce.com.mail>
|
26977
|
+
Subject: hello world
|
26978
|
+
Mime-Version: 1.0
|
26979
|
+
Content-Type: multipart/alternative;
|
26980
|
+
boundary="--==_mimepart_5aa9ebf0303a7_16d5c3ff4ac43edd44742";
|
26981
|
+
charset=UTF-8
|
26982
|
+
Content-Transfer-Encoding: 7bit
|
26983
|
+
|
26984
|
+
|
26985
|
+
----==_mimepart_5aa9ebf0303a7_16d5c3ff4ac43edd44742
|
26986
|
+
Content-Type: text/plain;
|
26987
|
+
charset=UTF-8
|
26988
|
+
Content-Transfer-Encoding: 7bit
|
26989
|
+
|
26990
|
+
## Leading again
|
26991
|
+
|
26992
|
+
----==_mimepart_5aa9ebf0303a7_16d5c3ff4ac43edd44742
|
26993
|
+
Content-Type: text/html;
|
26994
|
+
charset=UTF-8
|
26995
|
+
Content-Transfer-Encoding: 7bit
|
26996
|
+
|
26997
|
+
<pre><code> ## Leading again
|
26998
|
+
</code></pre>
|
26999
|
+
|
27000
|
+
----==_mimepart_5aa9ebf0303a7_16d5c3ff4ac43edd44742--
|
27001
|
+
|
27002
|
+
----------------------------------------------------
|
27003
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
27004
|
+
----------------------------------------------------
|
27005
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
27006
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (0.8ms)
|
27007
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
27008
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (0.1ms)
|
27009
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 25.7ms
|
27010
|
+
Sent mail to foo@example.com (2.1ms)
|
27011
|
+
Date: Wed, 14 Mar 2018 22:43:44 -0500
|
27012
|
+
From: from@example.com
|
27013
|
+
Reply-To: noreply@schneems.com
|
27014
|
+
To: foo@example.com
|
27015
|
+
Message-ID: <5aa9ebf037a69_16d5c3ff4ac43edd450d6@rschneeman-ltm4.internal.salesforce.com.mail>
|
27016
|
+
Subject: hello world
|
27017
|
+
Mime-Version: 1.0
|
27018
|
+
Content-Type: multipart/alternative;
|
27019
|
+
boundary="--==_mimepart_5aa9ebf03754d_16d5c3ff4ac43edd44951";
|
27020
|
+
charset=UTF-8
|
27021
|
+
Content-Transfer-Encoding: 7bit
|
27022
|
+
|
27023
|
+
|
27024
|
+
----==_mimepart_5aa9ebf03754d_16d5c3ff4ac43edd44951
|
27025
|
+
Content-Type: text/plain;
|
27026
|
+
charset=UTF-8
|
27027
|
+
Content-Transfer-Encoding: 7bit
|
27028
|
+
|
27029
|
+
## Leading
|
27030
|
+
|
27031
|
+
----==_mimepart_5aa9ebf03754d_16d5c3ff4ac43edd44951
|
27032
|
+
Content-Type: text/html;
|
27033
|
+
charset=UTF-8
|
27034
|
+
Content-Transfer-Encoding: 7bit
|
27035
|
+
|
27036
|
+
<h2 id="leading">Leading</h2>
|
27037
|
+
|
27038
|
+
----==_mimepart_5aa9ebf03754d_16d5c3ff4ac43edd44951--
|
27039
|
+
|
27040
|
+
----------------------------------------
|
27041
|
+
TemplateHandlerTest: test_dual_templates
|
27042
|
+
----------------------------------------
|
27043
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
27044
|
+
Rendered user_no_layout_mailer/contact.md.erb (0.8ms)
|
27045
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
27046
|
+
Rendered user_no_layout_mailer/contact.md.erb (0.1ms)
|
27047
|
+
UserNoLayoutMailer#contact: processed outbound mail in 29.5ms
|
27048
|
+
Sent mail to foo@example.com (2.0ms)
|
27049
|
+
Date: Wed, 14 Mar 2018 22:43:44 -0500
|
27050
|
+
From: from@example.com
|
27051
|
+
Reply-To: noreply@schneems.com
|
27052
|
+
To: foo@example.com
|
27053
|
+
Message-ID: <5aa9ebf03f88a_16d5c3ff4ac43edd452d9@rschneeman-ltm4.internal.salesforce.com.mail>
|
27054
|
+
Subject: hello world
|
27055
|
+
Mime-Version: 1.0
|
27056
|
+
Content-Type: multipart/alternative;
|
27057
|
+
boundary="--==_mimepart_5aa9ebf03f39d_16d5c3ff4ac43edd4517e";
|
27058
|
+
charset=UTF-8
|
27059
|
+
Content-Transfer-Encoding: 7bit
|
27060
|
+
|
27061
|
+
|
27062
|
+
----==_mimepart_5aa9ebf03f39d_16d5c3ff4ac43edd4517e
|
27063
|
+
Content-Type: text/plain;
|
27064
|
+
charset=UTF-8
|
27065
|
+
Content-Transfer-Encoding: 7bit
|
27066
|
+
|
27067
|
+
Dual templates **rock**!
|
27068
|
+
|
27069
|
+
----==_mimepart_5aa9ebf03f39d_16d5c3ff4ac43edd4517e
|
27070
|
+
Content-Type: text/html;
|
27071
|
+
charset=UTF-8
|
27072
|
+
Content-Transfer-Encoding: 7bit
|
27073
|
+
|
27074
|
+
<p>Dual templates <strong>rock</strong>!</p>
|
27075
|
+
|
27076
|
+
----==_mimepart_5aa9ebf03f39d_16d5c3ff4ac43edd4517e--
|
27077
|
+
|
27078
|
+
----------------------------------------------
|
27079
|
+
TemplateHandlerTest: test_.md_template_handler
|
27080
|
+
----------------------------------------------
|
27081
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2018-03-14 22:43:44 -0500
|
27082
|
+
Processing by HandlersController#show as HTML
|
27083
|
+
Parameters: {"id"=>"plain_markdown"}
|
27084
|
+
Rendering handlers/plain_markdown.html.md within layouts/application
|
27085
|
+
Rendered handlers/plain_markdown.html.md within layouts/application (1.0ms)
|
27086
|
+
Completed 200 OK in 10ms (Views: 9.7ms)
|
27087
|
+
-------------------------------------
|
27088
|
+
LayoutsTest: test_layout_renders_fine
|
27089
|
+
-------------------------------------
|
27090
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
27091
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.7ms)
|
27092
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
27093
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.2ms)
|
27094
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 33.5ms
|
27095
|
+
Sent mail to foo@example.com (3.9ms)
|
27096
|
+
Date: Wed, 14 Mar 2018 22:43:44 -0500
|
27097
|
+
From: from@example.com
|
27098
|
+
Reply-To: noreply@schneems.com
|
27099
|
+
To: foo@example.com
|
27100
|
+
Message-ID: <5aa9ebf051f0b_16d5c3ff4ac43edd4541@rschneeman-ltm4.internal.salesforce.com.mail>
|
27101
|
+
Subject: hello world
|
27102
|
+
Mime-Version: 1.0
|
27103
|
+
Content-Type: multipart/alternative;
|
27104
|
+
boundary="--==_mimepart_5aa9ebf0517e7_16d5c3ff4ac43edd45392";
|
27105
|
+
charset=UTF-8
|
27106
|
+
Content-Transfer-Encoding: 7bit
|
27107
|
+
|
27108
|
+
|
27109
|
+
----==_mimepart_5aa9ebf0517e7_16d5c3ff4ac43edd45392
|
27110
|
+
Content-Type: text/plain;
|
27111
|
+
charset=UTF-8
|
27112
|
+
Content-Transfer-Encoding: 7bit
|
27113
|
+
|
27114
|
+
TEXT## Welcome!
|
27115
|
+
|
27116
|
+
|
27117
|
+
----==_mimepart_5aa9ebf0517e7_16d5c3ff4ac43edd45392
|
27118
|
+
Content-Type: text/html;
|
27119
|
+
charset=UTF-8
|
27120
|
+
Content-Transfer-Encoding: 7bit
|
27121
|
+
|
27122
|
+
HTML<h2 id="welcome">Welcome!</h2>
|
27123
|
+
|
27124
|
+
----==_mimepart_5aa9ebf0517e7_16d5c3ff4ac43edd45392--
|
27125
|
+
|
27126
|
+
---------------------------
|
27127
|
+
LayoutsTest: test_no_layout
|
27128
|
+
---------------------------
|
27129
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27130
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.5ms)
|
27131
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27132
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.0ms)
|
27133
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 2.0ms
|
27134
|
+
Sent mail to foo@example.com (2.1ms)
|
27135
|
+
Date: Wed, 14 Mar 2018 22:43:44 -0500
|
27136
|
+
From: from@example.com
|
27137
|
+
Reply-To: noreply@schneems.com
|
27138
|
+
To: foo@example.com
|
27139
|
+
Message-ID: <5aa9ebf05411a_16d5c3ff4ac43edd456fc@rschneeman-ltm4.internal.salesforce.com.mail>
|
27140
|
+
Subject: hello world
|
27141
|
+
Mime-Version: 1.0
|
27142
|
+
Content-Type: multipart/alternative;
|
27143
|
+
boundary="--==_mimepart_5aa9ebf053be2_16d5c3ff4ac43edd455f";
|
27144
|
+
charset=UTF-8
|
27145
|
+
Content-Transfer-Encoding: 7bit
|
27146
|
+
|
27147
|
+
|
27148
|
+
----==_mimepart_5aa9ebf053be2_16d5c3ff4ac43edd455f
|
27149
|
+
Content-Type: text/plain;
|
27150
|
+
charset=UTF-8
|
27151
|
+
Content-Transfer-Encoding: 7bit
|
27152
|
+
|
27153
|
+
## Welcome!
|
27154
|
+
|
27155
|
+
----==_mimepart_5aa9ebf053be2_16d5c3ff4ac43edd455f
|
27156
|
+
Content-Type: text/html;
|
27157
|
+
charset=UTF-8
|
27158
|
+
Content-Transfer-Encoding: 7bit
|
27159
|
+
|
27160
|
+
<h2 id="welcome">Welcome!</h2>
|
27161
|
+
|
27162
|
+
----==_mimepart_5aa9ebf053be2_16d5c3ff4ac43edd455f--
|
27163
|
+
|
27164
|
+
----------------------------------------------
|
27165
|
+
ExtActionMailerTest: test_monkeypatch_location
|
27166
|
+
----------------------------------------------
|
27167
|
+
---------------------------------------
|
27168
|
+
MarkdownEngineTest: test_can_set_engine
|
27169
|
+
---------------------------------------
|
27170
|
+
----------------------------------------------------------
|
27171
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
27172
|
+
----------------------------------------------------------
|
27173
|
+
----------------------------------------------------------------
|
27174
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
27175
|
+
----------------------------------------------------------------
|
27176
|
+
----------------------------------------------
|
27177
|
+
TemplateHandlerTest: test_.md_template_handler
|
27178
|
+
----------------------------------------------
|
27179
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2018-03-27 13:42:15 -0500
|
27180
|
+
Processing by HandlersController#show as HTML
|
27181
|
+
Parameters: {"id"=>"plain_markdown"}
|
27182
|
+
Rendering handlers/plain_markdown.html.md within layouts/application
|
27183
|
+
Rendered handlers/plain_markdown.html.md within layouts/application (51.1ms)
|
27184
|
+
Completed 200 OK in 60ms (Views: 60.2ms)
|
27185
|
+
---------------------------------------------------
|
27186
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
27187
|
+
---------------------------------------------------
|
27188
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
27189
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (2.9ms)
|
27190
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
27191
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (0.1ms)
|
27192
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 161.4ms
|
27193
|
+
Sent mail to foo@example.com (9.2ms)
|
27194
|
+
Date: Tue, 27 Mar 2018 13:42:15 -0500
|
27195
|
+
From: from@example.com
|
27196
|
+
Reply-To: noreply@schneems.com
|
27197
|
+
To: foo@example.com
|
27198
|
+
Message-ID: <5aba9087ae3fa_74763fe06c43edc495021@rschneeman-ltm4.internal.salesforce.com.mail>
|
27199
|
+
Subject: hello world
|
27200
|
+
Mime-Version: 1.0
|
27201
|
+
Content-Type: multipart/alternative;
|
27202
|
+
boundary="--==_mimepart_5aba9087ac92a_74763fe06c43edc494951";
|
27203
|
+
charset=UTF-8
|
27204
|
+
Content-Transfer-Encoding: 7bit
|
27205
|
+
|
27206
|
+
|
27207
|
+
----==_mimepart_5aba9087ac92a_74763fe06c43edc494951
|
27208
|
+
Content-Type: text/plain;
|
27209
|
+
charset=UTF-8
|
27210
|
+
Content-Transfer-Encoding: 7bit
|
27211
|
+
|
27212
|
+
## Leading again
|
27213
|
+
|
27214
|
+
----==_mimepart_5aba9087ac92a_74763fe06c43edc494951
|
27215
|
+
Content-Type: text/html;
|
27216
|
+
charset=UTF-8
|
27217
|
+
Content-Transfer-Encoding: 7bit
|
27218
|
+
|
27219
|
+
<pre><code> ## Leading again
|
27220
|
+
</code></pre>
|
27221
|
+
|
27222
|
+
----==_mimepart_5aba9087ac92a_74763fe06c43edc494951--
|
27223
|
+
|
27224
|
+
----------------------------------------------------
|
27225
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
27226
|
+
----------------------------------------------------
|
27227
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
27228
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (0.7ms)
|
27229
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
27230
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (0.1ms)
|
27231
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 25.3ms
|
27232
|
+
Sent mail to foo@example.com (1.7ms)
|
27233
|
+
Date: Tue, 27 Mar 2018 13:42:15 -0500
|
27234
|
+
From: from@example.com
|
27235
|
+
Reply-To: noreply@schneems.com
|
27236
|
+
To: foo@example.com
|
27237
|
+
Message-ID: <5aba9087b58c1_74763fe06c43edc495269@rschneeman-ltm4.internal.salesforce.com.mail>
|
27238
|
+
Subject: hello world
|
27239
|
+
Mime-Version: 1.0
|
27240
|
+
Content-Type: multipart/alternative;
|
27241
|
+
boundary="--==_mimepart_5aba9087b544d_74763fe06c43edc4951ba";
|
27242
|
+
charset=UTF-8
|
27243
|
+
Content-Transfer-Encoding: 7bit
|
27244
|
+
|
27245
|
+
|
27246
|
+
----==_mimepart_5aba9087b544d_74763fe06c43edc4951ba
|
27247
|
+
Content-Type: text/plain;
|
27248
|
+
charset=UTF-8
|
27249
|
+
Content-Transfer-Encoding: 7bit
|
27250
|
+
|
27251
|
+
## Leading
|
27252
|
+
|
27253
|
+
----==_mimepart_5aba9087b544d_74763fe06c43edc4951ba
|
27254
|
+
Content-Type: text/html;
|
27255
|
+
charset=UTF-8
|
27256
|
+
Content-Transfer-Encoding: 7bit
|
27257
|
+
|
27258
|
+
<h2 id="leading">Leading</h2>
|
27259
|
+
|
27260
|
+
----==_mimepart_5aba9087b544d_74763fe06c43edc4951ba--
|
27261
|
+
|
27262
|
+
----------------------------------------
|
27263
|
+
TemplateHandlerTest: test_dual_templates
|
27264
|
+
----------------------------------------
|
27265
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
27266
|
+
Rendered user_no_layout_mailer/contact.md.erb (0.8ms)
|
27267
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
27268
|
+
Rendered user_no_layout_mailer/contact.md.erb (0.1ms)
|
27269
|
+
UserNoLayoutMailer#contact: processed outbound mail in 26.6ms
|
27270
|
+
Sent mail to foo@example.com (2.2ms)
|
27271
|
+
Date: Tue, 27 Mar 2018 13:42:15 -0500
|
27272
|
+
From: from@example.com
|
27273
|
+
Reply-To: noreply@schneems.com
|
27274
|
+
To: foo@example.com
|
27275
|
+
Message-ID: <5aba9087bca2d_74763fe06c43edc4954d3@rschneeman-ltm4.internal.salesforce.com.mail>
|
27276
|
+
Subject: hello world
|
27277
|
+
Mime-Version: 1.0
|
27278
|
+
Content-Type: multipart/alternative;
|
27279
|
+
boundary="--==_mimepart_5aba9087bc51a_74763fe06c43edc49531a";
|
27280
|
+
charset=UTF-8
|
27281
|
+
Content-Transfer-Encoding: 7bit
|
27282
|
+
|
27283
|
+
|
27284
|
+
----==_mimepart_5aba9087bc51a_74763fe06c43edc49531a
|
27285
|
+
Content-Type: text/plain;
|
27286
|
+
charset=UTF-8
|
27287
|
+
Content-Transfer-Encoding: 7bit
|
27288
|
+
|
27289
|
+
Dual templates **rock**!
|
27290
|
+
|
27291
|
+
----==_mimepart_5aba9087bc51a_74763fe06c43edc49531a
|
27292
|
+
Content-Type: text/html;
|
27293
|
+
charset=UTF-8
|
27294
|
+
Content-Transfer-Encoding: 7bit
|
27295
|
+
|
27296
|
+
<p>Dual templates <strong>rock</strong>!</p>
|
27297
|
+
|
27298
|
+
----==_mimepart_5aba9087bc51a_74763fe06c43edc49531a--
|
27299
|
+
|
27300
|
+
-------------------------------------------------------------
|
27301
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
27302
|
+
-------------------------------------------------------------
|
27303
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27304
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.7ms)
|
27305
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27306
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.1ms)
|
27307
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 26.5ms
|
27308
|
+
Sent mail to foo@example.com (2.2ms)
|
27309
|
+
Date: Tue, 27 Mar 2018 13:42:15 -0500
|
27310
|
+
From: from@example.com
|
27311
|
+
Reply-To: noreply@schneems.com
|
27312
|
+
To: foo@example.com
|
27313
|
+
Message-ID: <5aba9087c476e_74763fe06c43edc4956eb@rschneeman-ltm4.internal.salesforce.com.mail>
|
27314
|
+
Subject: hello world
|
27315
|
+
Mime-Version: 1.0
|
27316
|
+
Content-Type: multipart/alternative;
|
27317
|
+
boundary="--==_mimepart_5aba9087c4286_74763fe06c43edc4955d3";
|
27318
|
+
charset=UTF-8
|
27319
|
+
Content-Transfer-Encoding: 7bit
|
27320
|
+
|
27321
|
+
|
27322
|
+
----==_mimepart_5aba9087c4286_74763fe06c43edc4955d3
|
27323
|
+
Content-Type: text/plain;
|
27324
|
+
charset=UTF-8
|
27325
|
+
Content-Transfer-Encoding: 7bit
|
27326
|
+
|
27327
|
+
## Welcome!
|
27328
|
+
|
27329
|
+
----==_mimepart_5aba9087c4286_74763fe06c43edc4955d3
|
27330
|
+
Content-Type: text/html;
|
27331
|
+
charset=UTF-8
|
27332
|
+
Content-Transfer-Encoding: 7bit
|
27333
|
+
|
27334
|
+
<h2 id="welcome">Welcome!</h2>
|
27335
|
+
|
27336
|
+
----==_mimepart_5aba9087c4286_74763fe06c43edc4955d3--
|
27337
|
+
|
27338
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27339
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.4ms)
|
27340
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27341
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.0ms)
|
27342
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.6ms
|
27343
|
+
Sent mail to foo@example.com (1.8ms)
|
27344
|
+
Date: Tue, 27 Mar 2018 13:42:15 -0500
|
27345
|
+
From: from@example.com
|
27346
|
+
Reply-To: noreply@schneems.com
|
27347
|
+
To: foo@example.com
|
27348
|
+
Message-ID: <5aba9087c57d5_74763fe06c43edc4958b2@rschneeman-ltm4.internal.salesforce.com.mail>
|
27349
|
+
Subject: hello world
|
27350
|
+
Mime-Version: 1.0
|
27351
|
+
Content-Type: multipart/alternative;
|
27352
|
+
boundary="--==_mimepart_5aba9087c5356_74763fe06c43edc4957c7";
|
27353
|
+
charset=UTF-8
|
27354
|
+
Content-Transfer-Encoding: 7bit
|
27355
|
+
|
27356
|
+
|
27357
|
+
----==_mimepart_5aba9087c5356_74763fe06c43edc4957c7
|
27358
|
+
Content-Type: text/plain;
|
27359
|
+
charset=UTF-8
|
27360
|
+
Content-Transfer-Encoding: 7bit
|
27361
|
+
|
27362
|
+
## Welcome!
|
27363
|
+
|
27364
|
+
----==_mimepart_5aba9087c5356_74763fe06c43edc4957c7
|
27365
|
+
Content-Type: text/html;
|
27366
|
+
charset=UTF-8
|
27367
|
+
Content-Transfer-Encoding: 7bit
|
27368
|
+
|
27369
|
+
<h2 id="welcome">Welcome!</h2>
|
27370
|
+
|
27371
|
+
----==_mimepart_5aba9087c5356_74763fe06c43edc4957c7--
|
27372
|
+
|
27373
|
+
---------------------------------------
|
27374
|
+
MarkdownEngineTest: test_can_set_engine
|
27375
|
+
---------------------------------------
|
27376
|
+
----------------------------------------------------------------
|
27377
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
27378
|
+
----------------------------------------------------------------
|
27379
|
+
----------------------------------------------------------
|
27380
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
27381
|
+
----------------------------------------------------------
|
27382
|
+
----------------------------------------------
|
27383
|
+
ExtActionMailerTest: test_monkeypatch_location
|
27384
|
+
----------------------------------------------
|
27385
|
+
---------------------------
|
27386
|
+
LayoutsTest: test_no_layout
|
27387
|
+
---------------------------
|
27388
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27389
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.3ms)
|
27390
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27391
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.0ms)
|
27392
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 3.2ms
|
27393
|
+
Sent mail to foo@example.com (2.1ms)
|
27394
|
+
Date: Tue, 27 Mar 2018 13:42:15 -0500
|
27395
|
+
From: from@example.com
|
27396
|
+
Reply-To: noreply@schneems.com
|
27397
|
+
To: foo@example.com
|
27398
|
+
Message-ID: <5aba9087c7573_74763fe06c43edc49607b@rschneeman-ltm4.internal.salesforce.com.mail>
|
27399
|
+
Subject: hello world
|
27400
|
+
Mime-Version: 1.0
|
27401
|
+
Content-Type: multipart/alternative;
|
27402
|
+
boundary="--==_mimepart_5aba9087c7045_74763fe06c43edc4959a5";
|
27403
|
+
charset=UTF-8
|
27404
|
+
Content-Transfer-Encoding: 7bit
|
27405
|
+
|
27406
|
+
|
27407
|
+
----==_mimepart_5aba9087c7045_74763fe06c43edc4959a5
|
27408
|
+
Content-Type: text/plain;
|
27409
|
+
charset=UTF-8
|
27410
|
+
Content-Transfer-Encoding: 7bit
|
27411
|
+
|
27412
|
+
## Welcome!
|
27413
|
+
|
27414
|
+
----==_mimepart_5aba9087c7045_74763fe06c43edc4959a5
|
27415
|
+
Content-Type: text/html;
|
27416
|
+
charset=UTF-8
|
27417
|
+
Content-Transfer-Encoding: 7bit
|
27418
|
+
|
27419
|
+
<h2 id="welcome">Welcome!</h2>
|
27420
|
+
|
27421
|
+
----==_mimepart_5aba9087c7045_74763fe06c43edc4959a5--
|
27422
|
+
|
27423
|
+
-------------------------------------
|
27424
|
+
LayoutsTest: test_layout_renders_fine
|
27425
|
+
-------------------------------------
|
27426
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
27427
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.7ms)
|
27428
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
27429
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.2ms)
|
27430
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 31.3ms
|
27431
|
+
Sent mail to foo@example.com (2.3ms)
|
27432
|
+
Date: Tue, 27 Mar 2018 13:42:15 -0500
|
27433
|
+
From: from@example.com
|
27434
|
+
Reply-To: noreply@schneems.com
|
27435
|
+
To: foo@example.com
|
27436
|
+
Message-ID: <5aba9087d063f_74763fe06c43edc49625a@rschneeman-ltm4.internal.salesforce.com.mail>
|
27437
|
+
Subject: hello world
|
27438
|
+
Mime-Version: 1.0
|
27439
|
+
Content-Type: multipart/alternative;
|
27440
|
+
boundary="--==_mimepart_5aba9087d008d_74763fe06c43edc496188";
|
27441
|
+
charset=UTF-8
|
27442
|
+
Content-Transfer-Encoding: 7bit
|
27443
|
+
|
27444
|
+
|
27445
|
+
----==_mimepart_5aba9087d008d_74763fe06c43edc496188
|
27446
|
+
Content-Type: text/plain;
|
27447
|
+
charset=UTF-8
|
27448
|
+
Content-Transfer-Encoding: 7bit
|
27449
|
+
|
27450
|
+
TEXT## Welcome!
|
27451
|
+
|
27452
|
+
|
27453
|
+
----==_mimepart_5aba9087d008d_74763fe06c43edc496188
|
27454
|
+
Content-Type: text/html;
|
27455
|
+
charset=UTF-8
|
27456
|
+
Content-Transfer-Encoding: 7bit
|
27457
|
+
|
27458
|
+
HTML<h2 id="welcome">Welcome!</h2>
|
27459
|
+
|
27460
|
+
----==_mimepart_5aba9087d008d_74763fe06c43edc496188--
|
27461
|
+
|
27462
|
+
-------------------------------------------------------------
|
27463
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
27464
|
+
-------------------------------------------------------------
|
27465
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27466
|
+
Rendered user_no_layout_mailer/welcome.md+erb (46.0ms)
|
27467
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27468
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.2ms)
|
27469
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 76.8ms
|
27470
|
+
Sent mail to foo@example.com (10.1ms)
|
27471
|
+
Date: Tue, 27 Mar 2018 13:47:05 -0500
|
27472
|
+
From: from@example.com
|
27473
|
+
Reply-To: noreply@schneems.com
|
27474
|
+
To: foo@example.com
|
27475
|
+
Message-ID: <5aba91a9883e2_75ab3ffa04c24dd47792f@rschneeman-ltm4.internal.salesforce.com.mail>
|
27476
|
+
Subject: hello world
|
27477
|
+
Mime-Version: 1.0
|
27478
|
+
Content-Type: multipart/alternative;
|
27479
|
+
boundary="--==_mimepart_5aba91a9867cf_75ab3ffa04c24dd4778a6";
|
27480
|
+
charset=UTF-8
|
27481
|
+
Content-Transfer-Encoding: 7bit
|
27482
|
+
|
27483
|
+
|
27484
|
+
----==_mimepart_5aba91a9867cf_75ab3ffa04c24dd4778a6
|
27485
|
+
Content-Type: text/plain;
|
27486
|
+
charset=UTF-8
|
27487
|
+
Content-Transfer-Encoding: 7bit
|
27488
|
+
|
27489
|
+
## Welcome!
|
27490
|
+
|
27491
|
+
----==_mimepart_5aba91a9867cf_75ab3ffa04c24dd4778a6
|
27492
|
+
Content-Type: text/html;
|
27493
|
+
charset=UTF-8
|
27494
|
+
Content-Transfer-Encoding: 7bit
|
27495
|
+
|
27496
|
+
<h2 id="welcome">Welcome!</h2>
|
27497
|
+
|
27498
|
+
----==_mimepart_5aba91a9867cf_75ab3ffa04c24dd4778a6--
|
27499
|
+
|
27500
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27501
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.5ms)
|
27502
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27503
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.0ms)
|
27504
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 4.3ms
|
27505
|
+
Sent mail to foo@example.com (2.3ms)
|
27506
|
+
Date: Tue, 27 Mar 2018 13:47:05 -0500
|
27507
|
+
From: from@example.com
|
27508
|
+
Reply-To: noreply@schneems.com
|
27509
|
+
To: foo@example.com
|
27510
|
+
Message-ID: <5aba91a98a816_75ab3ffa04c24dd478190@rschneeman-ltm4.internal.salesforce.com.mail>
|
27511
|
+
Subject: hello world
|
27512
|
+
Mime-Version: 1.0
|
27513
|
+
Content-Type: multipart/alternative;
|
27514
|
+
boundary="--==_mimepart_5aba91a9899fb_75ab3ffa04c24dd478082";
|
27515
|
+
charset=UTF-8
|
27516
|
+
Content-Transfer-Encoding: 7bit
|
27517
|
+
|
27518
|
+
|
27519
|
+
----==_mimepart_5aba91a9899fb_75ab3ffa04c24dd478082
|
27520
|
+
Content-Type: text/plain;
|
27521
|
+
charset=UTF-8
|
27522
|
+
Content-Transfer-Encoding: 7bit
|
27523
|
+
|
27524
|
+
## Welcome!
|
27525
|
+
|
27526
|
+
----==_mimepart_5aba91a9899fb_75ab3ffa04c24dd478082
|
27527
|
+
Content-Type: text/html;
|
27528
|
+
charset=UTF-8
|
27529
|
+
Content-Transfer-Encoding: 7bit
|
27530
|
+
|
27531
|
+
<h2 id="welcome">Welcome!</h2>
|
27532
|
+
|
27533
|
+
----==_mimepart_5aba91a9899fb_75ab3ffa04c24dd478082--
|
27534
|
+
|
27535
|
+
----------------------------------------------------------------
|
27536
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
27537
|
+
----------------------------------------------------------------
|
27538
|
+
---------------------------------------
|
27539
|
+
MarkdownEngineTest: test_can_set_engine
|
27540
|
+
---------------------------------------
|
27541
|
+
----------------------------------------------------------
|
27542
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
27543
|
+
----------------------------------------------------------
|
27544
|
+
---------------------------
|
27545
|
+
LayoutsTest: test_no_layout
|
27546
|
+
---------------------------
|
27547
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27548
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.3ms)
|
27549
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27550
|
+
Rendered user_no_layout_mailer/welcome.md+erb (0.0ms)
|
27551
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.7ms
|
27552
|
+
Sent mail to foo@example.com (2.2ms)
|
27553
|
+
Date: Tue, 27 Mar 2018 13:47:05 -0500
|
27554
|
+
From: from@example.com
|
27555
|
+
Reply-To: noreply@schneems.com
|
27556
|
+
To: foo@example.com
|
27557
|
+
Message-ID: <5aba91a98c05f_75ab3ffa04c24dd4783dc@rschneeman-ltm4.internal.salesforce.com.mail>
|
27558
|
+
Subject: hello world
|
27559
|
+
Mime-Version: 1.0
|
27560
|
+
Content-Type: multipart/alternative;
|
27561
|
+
boundary="--==_mimepart_5aba91a98bb69_75ab3ffa04c24dd478267";
|
27562
|
+
charset=UTF-8
|
27563
|
+
Content-Transfer-Encoding: 7bit
|
27564
|
+
|
27565
|
+
|
27566
|
+
----==_mimepart_5aba91a98bb69_75ab3ffa04c24dd478267
|
27567
|
+
Content-Type: text/plain;
|
27568
|
+
charset=UTF-8
|
27569
|
+
Content-Transfer-Encoding: 7bit
|
27570
|
+
|
27571
|
+
## Welcome!
|
27572
|
+
|
27573
|
+
----==_mimepart_5aba91a98bb69_75ab3ffa04c24dd478267
|
27574
|
+
Content-Type: text/html;
|
27575
|
+
charset=UTF-8
|
27576
|
+
Content-Transfer-Encoding: 7bit
|
27577
|
+
|
27578
|
+
<h2 id="welcome">Welcome!</h2>
|
27579
|
+
|
27580
|
+
----==_mimepart_5aba91a98bb69_75ab3ffa04c24dd478267--
|
27581
|
+
|
27582
|
+
-------------------------------------
|
27583
|
+
LayoutsTest: test_layout_renders_fine
|
27584
|
+
-------------------------------------
|
27585
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
27586
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.9ms)
|
27587
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
27588
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (0.3ms)
|
27589
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 31.3ms
|
27590
|
+
Sent mail to foo@example.com (2.3ms)
|
27591
|
+
Date: Tue, 27 Mar 2018 13:47:05 -0500
|
27592
|
+
From: from@example.com
|
27593
|
+
Reply-To: noreply@schneems.com
|
27594
|
+
To: foo@example.com
|
27595
|
+
Message-ID: <5aba91a994e94_75ab3ffa04c24dd478580@rschneeman-ltm4.internal.salesforce.com.mail>
|
27596
|
+
Subject: hello world
|
27597
|
+
Mime-Version: 1.0
|
27598
|
+
Content-Type: multipart/alternative;
|
27599
|
+
boundary="--==_mimepart_5aba91a99486e_75ab3ffa04c24dd4784f8";
|
27600
|
+
charset=UTF-8
|
27601
|
+
Content-Transfer-Encoding: 7bit
|
27602
|
+
|
27603
|
+
|
27604
|
+
----==_mimepart_5aba91a99486e_75ab3ffa04c24dd4784f8
|
27605
|
+
Content-Type: text/plain;
|
27606
|
+
charset=UTF-8
|
27607
|
+
Content-Transfer-Encoding: 7bit
|
27608
|
+
|
27609
|
+
TEXT## Welcome!
|
27610
|
+
|
27611
|
+
|
27612
|
+
----==_mimepart_5aba91a99486e_75ab3ffa04c24dd4784f8
|
27613
|
+
Content-Type: text/html;
|
27614
|
+
charset=UTF-8
|
27615
|
+
Content-Transfer-Encoding: 7bit
|
27616
|
+
|
27617
|
+
HTML<h2 id="welcome">Welcome!</h2>
|
27618
|
+
|
27619
|
+
----==_mimepart_5aba91a99486e_75ab3ffa04c24dd4784f8--
|
27620
|
+
|
27621
|
+
----------------------------------------------
|
27622
|
+
TemplateHandlerTest: test_.md_template_handler
|
27623
|
+
----------------------------------------------
|
27624
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2018-03-27 13:47:05 -0500
|
27625
|
+
Processing by HandlersController#show as HTML
|
27626
|
+
Parameters: {"id"=>"plain_markdown"}
|
27627
|
+
Rendering handlers/plain_markdown.html.md within layouts/application
|
27628
|
+
Rendered handlers/plain_markdown.html.md within layouts/application (0.6ms)
|
27629
|
+
Completed 200 OK in 8ms (Views: 7.8ms)
|
27630
|
+
---------------------------------------------------
|
27631
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
27632
|
+
---------------------------------------------------
|
27633
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
27634
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (2.3ms)
|
27635
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
27636
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (0.2ms)
|
27637
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 29.5ms
|
27638
|
+
Sent mail to foo@example.com (2.1ms)
|
27639
|
+
Date: Tue, 27 Mar 2018 13:47:05 -0500
|
27640
|
+
From: from@example.com
|
27641
|
+
Reply-To: noreply@schneems.com
|
27642
|
+
To: foo@example.com
|
27643
|
+
Message-ID: <5aba91a9a838f_75ab3ffa04c24dd4787b3@rschneeman-ltm4.internal.salesforce.com.mail>
|
27644
|
+
Subject: hello world
|
27645
|
+
Mime-Version: 1.0
|
27646
|
+
Content-Type: multipart/alternative;
|
27647
|
+
boundary="--==_mimepart_5aba91a9a7dda_75ab3ffa04c24dd47868f";
|
27648
|
+
charset=UTF-8
|
27649
|
+
Content-Transfer-Encoding: 7bit
|
27650
|
+
|
27651
|
+
|
27652
|
+
----==_mimepart_5aba91a9a7dda_75ab3ffa04c24dd47868f
|
27653
|
+
Content-Type: text/plain;
|
27654
|
+
charset=UTF-8
|
27655
|
+
Content-Transfer-Encoding: 7bit
|
27656
|
+
|
27657
|
+
## Leading again
|
27658
|
+
|
27659
|
+
----==_mimepart_5aba91a9a7dda_75ab3ffa04c24dd47868f
|
27660
|
+
Content-Type: text/html;
|
27661
|
+
charset=UTF-8
|
27662
|
+
Content-Transfer-Encoding: 7bit
|
27663
|
+
|
27664
|
+
<pre><code> ## Leading again
|
27665
|
+
</code></pre>
|
27666
|
+
|
27667
|
+
----==_mimepart_5aba91a9a7dda_75ab3ffa04c24dd47868f--
|
27668
|
+
|
27669
|
+
----------------------------------------
|
27670
|
+
TemplateHandlerTest: test_dual_templates
|
27671
|
+
----------------------------------------
|
27672
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
27673
|
+
Rendered user_no_layout_mailer/contact.md.erb (0.9ms)
|
27674
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
27675
|
+
Rendered user_no_layout_mailer/contact.md.erb (0.2ms)
|
27676
|
+
UserNoLayoutMailer#contact: processed outbound mail in 26.1ms
|
27677
|
+
Sent mail to foo@example.com (2.1ms)
|
27678
|
+
Date: Tue, 27 Mar 2018 13:47:05 -0500
|
27679
|
+
From: from@example.com
|
27680
|
+
Reply-To: noreply@schneems.com
|
27681
|
+
To: foo@example.com
|
27682
|
+
Message-ID: <5aba91a9af542_75ab3ffa04c24dd4789b4@rschneeman-ltm4.internal.salesforce.com.mail>
|
27683
|
+
Subject: hello world
|
27684
|
+
Mime-Version: 1.0
|
27685
|
+
Content-Type: multipart/alternative;
|
27686
|
+
boundary="--==_mimepart_5aba91a9aef25_75ab3ffa04c24dd4788d2";
|
27687
|
+
charset=UTF-8
|
27688
|
+
Content-Transfer-Encoding: 7bit
|
27689
|
+
|
27690
|
+
|
27691
|
+
----==_mimepart_5aba91a9aef25_75ab3ffa04c24dd4788d2
|
27692
|
+
Content-Type: text/plain;
|
27693
|
+
charset=UTF-8
|
27694
|
+
Content-Transfer-Encoding: 7bit
|
27695
|
+
|
27696
|
+
Dual templates **rock**!
|
27697
|
+
|
27698
|
+
----==_mimepart_5aba91a9aef25_75ab3ffa04c24dd4788d2
|
27699
|
+
Content-Type: text/html;
|
27700
|
+
charset=UTF-8
|
27701
|
+
Content-Transfer-Encoding: 7bit
|
27702
|
+
|
27703
|
+
<p>Dual templates <strong>rock</strong>!</p>
|
27704
|
+
|
27705
|
+
----==_mimepart_5aba91a9aef25_75ab3ffa04c24dd4788d2--
|
27706
|
+
|
27707
|
+
----------------------------------------------------
|
27708
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
27709
|
+
----------------------------------------------------
|
27710
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
27711
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (0.9ms)
|
27712
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
27713
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (0.2ms)
|
27714
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 28.0ms
|
27715
|
+
Sent mail to foo@example.com (2.8ms)
|
27716
|
+
Date: Tue, 27 Mar 2018 13:47:05 -0500
|
27717
|
+
From: from@example.com
|
27718
|
+
Reply-To: noreply@schneems.com
|
27719
|
+
To: foo@example.com
|
27720
|
+
Message-ID: <5aba91a9b6f7e_75ab3ffa04c24dd4791fd@rschneeman-ltm4.internal.salesforce.com.mail>
|
27721
|
+
Subject: hello world
|
27722
|
+
Mime-Version: 1.0
|
27723
|
+
Content-Type: multipart/alternative;
|
27724
|
+
boundary="--==_mimepart_5aba91a9b68ec_75ab3ffa04c24dd47908d";
|
27725
|
+
charset=UTF-8
|
27726
|
+
Content-Transfer-Encoding: 7bit
|
27727
|
+
|
27728
|
+
|
27729
|
+
----==_mimepart_5aba91a9b68ec_75ab3ffa04c24dd47908d
|
27730
|
+
Content-Type: text/plain;
|
27731
|
+
charset=UTF-8
|
27732
|
+
Content-Transfer-Encoding: 7bit
|
27733
|
+
|
27734
|
+
## Leading
|
27735
|
+
|
27736
|
+
----==_mimepart_5aba91a9b68ec_75ab3ffa04c24dd47908d
|
27737
|
+
Content-Type: text/html;
|
27738
|
+
charset=UTF-8
|
27739
|
+
Content-Transfer-Encoding: 7bit
|
27740
|
+
|
27741
|
+
<h2 id="leading">Leading</h2>
|
27742
|
+
|
27743
|
+
----==_mimepart_5aba91a9b68ec_75ab3ffa04c24dd47908d--
|
27744
|
+
|
27745
|
+
----------------------------------------------
|
27746
|
+
ExtActionMailerTest: test_monkeypatch_location
|
27747
|
+
----------------------------------------------
|
27748
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
27749
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27750
|
+
---------------------------
|
27751
|
+
LayoutsTest: test_no_layout
|
27752
|
+
---------------------------
|
27753
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27754
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 1.8ms | Allocations: 295)
|
27755
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 9.6ms
|
27756
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27757
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27758
|
+
-------------------------------------
|
27759
|
+
LayoutsTest: test_layout_renders_fine
|
27760
|
+
-------------------------------------
|
27761
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
27762
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.8ms | Allocations: 81)
|
27763
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 3.2ms
|
27764
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27765
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27766
|
+
-------------------------------------------------------------
|
27767
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
27768
|
+
-------------------------------------------------------------
|
27769
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27770
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 6)
|
27771
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.1ms
|
27772
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27773
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27774
|
+
----------------------------------------------
|
27775
|
+
ExtActionMailerTest: test_monkeypatch_location
|
27776
|
+
----------------------------------------------
|
27777
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27778
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27779
|
+
----------------------------------------------------------
|
27780
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
27781
|
+
----------------------------------------------------------
|
27782
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
27783
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
27784
|
+
----------------------------------------------------------------
|
27785
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
27786
|
+
----------------------------------------------------------------
|
27787
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27788
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27789
|
+
---------------------------------------
|
27790
|
+
MarkdownEngineTest: test_can_set_engine
|
27791
|
+
---------------------------------------
|
27792
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27793
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27794
|
+
----------------------------------------------------
|
27795
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
27796
|
+
----------------------------------------------------
|
27797
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
27798
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.6ms | Allocations: 88)
|
27799
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 2.2ms
|
27800
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27801
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27802
|
+
---------------------------------------------------
|
27803
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
27804
|
+
---------------------------------------------------
|
27805
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
27806
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.6ms | Allocations: 82)
|
27807
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 2.4ms
|
27808
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27809
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27810
|
+
----------------------------------------
|
27811
|
+
TemplateHandlerTest: test_dual_templates
|
27812
|
+
----------------------------------------
|
27813
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
27814
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.4ms | Allocations: 83)
|
27815
|
+
UserNoLayoutMailer#contact: processed outbound mail in 2.2ms
|
27816
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27817
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27818
|
+
----------------------------------------------
|
27819
|
+
TemplateHandlerTest: test_.md_template_handler
|
27820
|
+
----------------------------------------------
|
27821
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 15:42:09 -0500
|
27822
|
+
Processing by HandlersController#show as HTML
|
27823
|
+
Parameters: {"id"=>"plain_markdown"}
|
27824
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 191)
|
27825
|
+
[1m[35m (0.8ms)[0m [1m[31mrollback transaction[0m
|
27826
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
27827
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27828
|
+
-------------------------------------
|
27829
|
+
LayoutsTest: test_layout_renders_fine
|
27830
|
+
-------------------------------------
|
27831
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
27832
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 1.0ms | Allocations: 295)
|
27833
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 9.2ms
|
27834
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27835
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27836
|
+
---------------------------
|
27837
|
+
LayoutsTest: test_no_layout
|
27838
|
+
---------------------------
|
27839
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27840
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 81)
|
27841
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 2.5ms
|
27842
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27843
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27844
|
+
---------------------------------------------------
|
27845
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
27846
|
+
---------------------------------------------------
|
27847
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
27848
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.3ms | Allocations: 82)
|
27849
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 2.0ms
|
27850
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27851
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27852
|
+
----------------------------------------------------
|
27853
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
27854
|
+
----------------------------------------------------
|
27855
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
27856
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.3ms | Allocations: 87)
|
27857
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 2.5ms
|
27858
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27859
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27860
|
+
----------------------------------------------
|
27861
|
+
TemplateHandlerTest: test_.md_template_handler
|
27862
|
+
----------------------------------------------
|
27863
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 15:42:52 -0500
|
27864
|
+
Processing by HandlersController#show as HTML
|
27865
|
+
Parameters: {"id"=>"plain_markdown"}
|
27866
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 193)
|
27867
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27868
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27869
|
+
----------------------------------------
|
27870
|
+
TemplateHandlerTest: test_dual_templates
|
27871
|
+
----------------------------------------
|
27872
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
27873
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.5ms | Allocations: 84)
|
27874
|
+
UserNoLayoutMailer#contact: processed outbound mail in 2.6ms
|
27875
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27876
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27877
|
+
----------------------------------------------
|
27878
|
+
ExtActionMailerTest: test_monkeypatch_location
|
27879
|
+
----------------------------------------------
|
27880
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27881
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27882
|
+
---------------------------------------
|
27883
|
+
MarkdownEngineTest: test_can_set_engine
|
27884
|
+
---------------------------------------
|
27885
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27886
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27887
|
+
----------------------------------------------------------
|
27888
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
27889
|
+
----------------------------------------------------------
|
27890
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27891
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27892
|
+
----------------------------------------------------------------
|
27893
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
27894
|
+
----------------------------------------------------------------
|
27895
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27896
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27897
|
+
-------------------------------------------------------------
|
27898
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
27899
|
+
-------------------------------------------------------------
|
27900
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27901
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 6)
|
27902
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 2.0ms
|
27903
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27904
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
27905
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27906
|
+
----------------------------------------
|
27907
|
+
TemplateHandlerTest: test_dual_templates
|
27908
|
+
----------------------------------------
|
27909
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
27910
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 1.1ms | Allocations: 296)
|
27911
|
+
UserNoLayoutMailer#contact: processed outbound mail in 8.2ms
|
27912
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27913
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27914
|
+
----------------------------------------------
|
27915
|
+
TemplateHandlerTest: test_.md_template_handler
|
27916
|
+
----------------------------------------------
|
27917
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 15:47:10 -0500
|
27918
|
+
Processing by HandlersController#show as HTML
|
27919
|
+
Parameters: {"id"=>"plain_markdown"}
|
27920
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 193)
|
27921
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27922
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27923
|
+
---------------------------------------------------
|
27924
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
27925
|
+
---------------------------------------------------
|
27926
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
27927
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.2ms | Allocations: 83)
|
27928
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 1.7ms
|
27929
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27930
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27931
|
+
----------------------------------------------------
|
27932
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
27933
|
+
----------------------------------------------------
|
27934
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
27935
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.3ms | Allocations: 87)
|
27936
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 1.9ms
|
27937
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27938
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27939
|
+
-------------------------------------------------------------
|
27940
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
27941
|
+
-------------------------------------------------------------
|
27942
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27943
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.3ms | Allocations: 82)
|
27944
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.7ms
|
27945
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27946
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27947
|
+
-------------------------------------
|
27948
|
+
LayoutsTest: test_layout_renders_fine
|
27949
|
+
-------------------------------------
|
27950
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
27951
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.2ms | Allocations: 81)
|
27952
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 2.3ms
|
27953
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27954
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27955
|
+
---------------------------
|
27956
|
+
LayoutsTest: test_no_layout
|
27957
|
+
---------------------------
|
27958
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
27959
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 6)
|
27960
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.1ms
|
27961
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27962
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27963
|
+
---------------------------------------
|
27964
|
+
MarkdownEngineTest: test_can_set_engine
|
27965
|
+
---------------------------------------
|
27966
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27967
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27968
|
+
----------------------------------------------------------------
|
27969
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
27970
|
+
----------------------------------------------------------------
|
27971
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27972
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27973
|
+
----------------------------------------------------------
|
27974
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
27975
|
+
----------------------------------------------------------
|
27976
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27977
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27978
|
+
----------------------------------------------
|
27979
|
+
ExtActionMailerTest: test_monkeypatch_location
|
27980
|
+
----------------------------------------------
|
27981
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27982
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
27983
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
27984
|
+
----------------------------------------------------------------
|
27985
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
27986
|
+
----------------------------------------------------------------
|
27987
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27988
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27989
|
+
----------------------------------------------------------
|
27990
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
27991
|
+
----------------------------------------------------------
|
27992
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27993
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27994
|
+
---------------------------------------
|
27995
|
+
MarkdownEngineTest: test_can_set_engine
|
27996
|
+
---------------------------------------
|
27997
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
27998
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
27999
|
+
----------------------------------------------
|
28000
|
+
ExtActionMailerTest: test_monkeypatch_location
|
28001
|
+
----------------------------------------------
|
28002
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28003
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28004
|
+
---------------------------------------------------
|
28005
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
28006
|
+
---------------------------------------------------
|
28007
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
28008
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.8ms | Allocations: 295)
|
28009
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 7.5ms
|
28010
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28011
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28012
|
+
----------------------------------------
|
28013
|
+
TemplateHandlerTest: test_dual_templates
|
28014
|
+
----------------------------------------
|
28015
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
28016
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.2ms | Allocations: 83)
|
28017
|
+
UserNoLayoutMailer#contact: processed outbound mail in 1.6ms
|
28018
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28019
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28020
|
+
----------------------------------------------------
|
28021
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
28022
|
+
----------------------------------------------------
|
28023
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
28024
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.2ms | Allocations: 88)
|
28025
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 1.6ms
|
28026
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28027
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28028
|
+
----------------------------------------------
|
28029
|
+
TemplateHandlerTest: test_.md_template_handler
|
28030
|
+
----------------------------------------------
|
28031
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 15:49:25 -0500
|
28032
|
+
Processing by HandlersController#show as HTML
|
28033
|
+
Parameters: {"id"=>"plain_markdown"}
|
28034
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms | Allocations: 191)
|
28035
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28036
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28037
|
+
-------------------------------------
|
28038
|
+
LayoutsTest: test_layout_renders_fine
|
28039
|
+
-------------------------------------
|
28040
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
28041
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.3ms | Allocations: 82)
|
28042
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 5.0ms
|
28043
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28044
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28045
|
+
---------------------------
|
28046
|
+
LayoutsTest: test_no_layout
|
28047
|
+
---------------------------
|
28048
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28049
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.3ms | Allocations: 81)
|
28050
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 4.1ms
|
28051
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28052
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28053
|
+
-------------------------------------------------------------
|
28054
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28055
|
+
-------------------------------------------------------------
|
28056
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28057
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 6)
|
28058
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 2.5ms
|
28059
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28060
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28061
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28062
|
+
-------------------------------------------------------------
|
28063
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28064
|
+
-------------------------------------------------------------
|
28065
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28066
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.7ms | Allocations: 295)
|
28067
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 6.4ms
|
28068
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28069
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28070
|
+
---------------------------------------
|
28071
|
+
MarkdownEngineTest: test_can_set_engine
|
28072
|
+
---------------------------------------
|
28073
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28074
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28075
|
+
----------------------------------------------------------
|
28076
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
28077
|
+
----------------------------------------------------------
|
28078
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28079
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28080
|
+
----------------------------------------------------------------
|
28081
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
28082
|
+
----------------------------------------------------------------
|
28083
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28084
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28085
|
+
----------------------------------------------
|
28086
|
+
ExtActionMailerTest: test_monkeypatch_location
|
28087
|
+
----------------------------------------------
|
28088
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28089
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28090
|
+
----------------------------------------------
|
28091
|
+
TemplateHandlerTest: test_.md_template_handler
|
28092
|
+
----------------------------------------------
|
28093
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 15:51:00 -0500
|
28094
|
+
Processing by HandlersController#show as HTML
|
28095
|
+
Parameters: {"id"=>"plain_markdown"}
|
28096
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 193)
|
28097
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28098
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28099
|
+
---------------------------------------------------
|
28100
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
28101
|
+
---------------------------------------------------
|
28102
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
28103
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.3ms | Allocations: 83)
|
28104
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 3.7ms
|
28105
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28106
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28107
|
+
----------------------------------------
|
28108
|
+
TemplateHandlerTest: test_dual_templates
|
28109
|
+
----------------------------------------
|
28110
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
28111
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.5ms | Allocations: 83)
|
28112
|
+
UserNoLayoutMailer#contact: processed outbound mail in 5.2ms
|
28113
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28114
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28115
|
+
----------------------------------------------------
|
28116
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
28117
|
+
----------------------------------------------------
|
28118
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
28119
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 1.0ms | Allocations: 87)
|
28120
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 4.3ms
|
28121
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28122
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28123
|
+
-------------------------------------
|
28124
|
+
LayoutsTest: test_layout_renders_fine
|
28125
|
+
-------------------------------------
|
28126
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
28127
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.2ms | Allocations: 81)
|
28128
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 6.1ms
|
28129
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28130
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28131
|
+
---------------------------
|
28132
|
+
LayoutsTest: test_no_layout
|
28133
|
+
---------------------------
|
28134
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28135
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 6)
|
28136
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.9ms
|
28137
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28138
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28139
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28140
|
+
----------------------------------------
|
28141
|
+
TemplateHandlerTest: test_dual_templates
|
28142
|
+
----------------------------------------
|
28143
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
28144
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 1.1ms | Allocations: 298)
|
28145
|
+
UserNoLayoutMailer#contact: processed outbound mail in 7.7ms
|
28146
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28147
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28148
|
+
----------------------------------------------
|
28149
|
+
TemplateHandlerTest: test_.md_template_handler
|
28150
|
+
----------------------------------------------
|
28151
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 15:54:29 -0500
|
28152
|
+
Processing by HandlersController#show as HTML
|
28153
|
+
Parameters: {"id"=>"plain_markdown"}
|
28154
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 193)
|
28155
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28156
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28157
|
+
---------------------------------------------------
|
28158
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
28159
|
+
---------------------------------------------------
|
28160
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
28161
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.3ms | Allocations: 85)
|
28162
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 2.1ms
|
28163
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28164
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28165
|
+
----------------------------------------------------
|
28166
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
28167
|
+
----------------------------------------------------
|
28168
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
28169
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.3ms | Allocations: 89)
|
28170
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 1.9ms
|
28171
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28172
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28173
|
+
----------------------------------------------------------------
|
28174
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
28175
|
+
----------------------------------------------------------------
|
28176
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28177
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28178
|
+
----------------------------------------------------------
|
28179
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
28180
|
+
----------------------------------------------------------
|
28181
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28182
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28183
|
+
---------------------------------------
|
28184
|
+
MarkdownEngineTest: test_can_set_engine
|
28185
|
+
---------------------------------------
|
28186
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28187
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28188
|
+
----------------------------------------------
|
28189
|
+
ExtActionMailerTest: test_monkeypatch_location
|
28190
|
+
----------------------------------------------
|
28191
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28192
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28193
|
+
-------------------------------------
|
28194
|
+
LayoutsTest: test_layout_renders_fine
|
28195
|
+
-------------------------------------
|
28196
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
28197
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.4ms | Allocations: 84)
|
28198
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 6.5ms
|
28199
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28200
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28201
|
+
---------------------------
|
28202
|
+
LayoutsTest: test_no_layout
|
28203
|
+
---------------------------
|
28204
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28205
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 1.4ms | Allocations: 83)
|
28206
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 4.3ms
|
28207
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28208
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28209
|
+
-------------------------------------------------------------
|
28210
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28211
|
+
-------------------------------------------------------------
|
28212
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28213
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 6)
|
28214
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 4.0ms
|
28215
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28216
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28217
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28218
|
+
---------------------------------------
|
28219
|
+
MarkdownEngineTest: test_can_set_engine
|
28220
|
+
---------------------------------------
|
28221
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28222
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28223
|
+
----------------------------------------------------------------
|
28224
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
28225
|
+
----------------------------------------------------------------
|
28226
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28227
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28228
|
+
----------------------------------------------------------
|
28229
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
28230
|
+
----------------------------------------------------------
|
28231
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28232
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28233
|
+
----------------------------------------------
|
28234
|
+
ExtActionMailerTest: test_monkeypatch_location
|
28235
|
+
----------------------------------------------
|
28236
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28237
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28238
|
+
----------------------------------------------
|
28239
|
+
TemplateHandlerTest: test_.md_template_handler
|
28240
|
+
----------------------------------------------
|
28241
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 15:54:40 -0500
|
28242
|
+
Processing by HandlersController#show as HTML
|
28243
|
+
Parameters: {"id"=>"plain_markdown"}
|
28244
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 195)
|
28245
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28246
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28247
|
+
----------------------------------------------------
|
28248
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
28249
|
+
----------------------------------------------------
|
28250
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
28251
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 1.8ms | Allocations: 302)
|
28252
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 11.8ms
|
28253
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28254
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28255
|
+
---------------------------------------------------
|
28256
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
28257
|
+
---------------------------------------------------
|
28258
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
28259
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.3ms | Allocations: 84)
|
28260
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 3.9ms
|
28261
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28262
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28263
|
+
----------------------------------------
|
28264
|
+
TemplateHandlerTest: test_dual_templates
|
28265
|
+
----------------------------------------
|
28266
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
28267
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.3ms | Allocations: 85)
|
28268
|
+
UserNoLayoutMailer#contact: processed outbound mail in 3.8ms
|
28269
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28270
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28271
|
+
-------------------------------------
|
28272
|
+
LayoutsTest: test_layout_renders_fine
|
28273
|
+
-------------------------------------
|
28274
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
28275
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 1.1ms | Allocations: 84)
|
28276
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 5.1ms
|
28277
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28278
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28279
|
+
---------------------------
|
28280
|
+
LayoutsTest: test_no_layout
|
28281
|
+
---------------------------
|
28282
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28283
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 1.4ms | Allocations: 83)
|
28284
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 4.4ms
|
28285
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28286
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28287
|
+
-------------------------------------------------------------
|
28288
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28289
|
+
-------------------------------------------------------------
|
28290
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28291
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 6)
|
28292
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 2.8ms
|
28293
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28294
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28295
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28296
|
+
-------------------------------------
|
28297
|
+
LayoutsTest: test_layout_renders_fine
|
28298
|
+
-------------------------------------
|
28299
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
28300
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.9ms | Allocations: 295)
|
28301
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 7.3ms
|
28302
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28303
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28304
|
+
---------------------------
|
28305
|
+
LayoutsTest: test_no_layout
|
28306
|
+
---------------------------
|
28307
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28308
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.4ms | Allocations: 81)
|
28309
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 2.3ms
|
28310
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28311
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28312
|
+
----------------------------------------------
|
28313
|
+
ExtActionMailerTest: test_monkeypatch_location
|
28314
|
+
----------------------------------------------
|
28315
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28316
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28317
|
+
---------------------------------------------------
|
28318
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
28319
|
+
---------------------------------------------------
|
28320
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
28321
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.2ms | Allocations: 82)
|
28322
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 1.6ms
|
28323
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28324
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28325
|
+
----------------------------------------------------
|
28326
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
28327
|
+
----------------------------------------------------
|
28328
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
28329
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.3ms | Allocations: 87)
|
28330
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 1.6ms
|
28331
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28332
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28333
|
+
----------------------------------------------
|
28334
|
+
TemplateHandlerTest: test_.md_template_handler
|
28335
|
+
----------------------------------------------
|
28336
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 15:56:50 -0500
|
28337
|
+
Processing by HandlersController#show as HTML
|
28338
|
+
Parameters: {"id"=>"plain_markdown"}
|
28339
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 193)
|
28340
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28341
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28342
|
+
----------------------------------------
|
28343
|
+
TemplateHandlerTest: test_dual_templates
|
28344
|
+
----------------------------------------
|
28345
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
28346
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.3ms | Allocations: 84)
|
28347
|
+
UserNoLayoutMailer#contact: processed outbound mail in 1.9ms
|
28348
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28349
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28350
|
+
-------------------------------------------------------------
|
28351
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28352
|
+
-------------------------------------------------------------
|
28353
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28354
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 6)
|
28355
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.0ms
|
28356
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28357
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28358
|
+
---------------------------------------
|
28359
|
+
MarkdownEngineTest: test_can_set_engine
|
28360
|
+
---------------------------------------
|
28361
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28362
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28363
|
+
----------------------------------------------------------------
|
28364
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
28365
|
+
----------------------------------------------------------------
|
28366
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28367
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
28368
|
+
----------------------------------------------------------
|
28369
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
28370
|
+
----------------------------------------------------------
|
28371
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28372
|
+
[1m[35m (1.1ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28373
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28374
|
+
-------------------------------------------------------------
|
28375
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28376
|
+
-------------------------------------------------------------
|
28377
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28378
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 295)
|
28379
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.0ms
|
28380
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28381
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28382
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28383
|
+
-------------------------------------------------------------
|
28384
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28385
|
+
-------------------------------------------------------------
|
28386
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28387
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 295)
|
28388
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 6.9ms
|
28389
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28390
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28391
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28392
|
+
-------------------------------------------------------------
|
28393
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28394
|
+
-------------------------------------------------------------
|
28395
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28396
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.7ms | Allocations: 295)
|
28397
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 6.2ms
|
28398
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28399
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28400
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28401
|
+
-------------------------------------------------------------
|
28402
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28403
|
+
-------------------------------------------------------------
|
28404
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28405
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 290)
|
28406
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 6.4ms
|
28407
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28408
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28409
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28410
|
+
-------------------------------------------------------------
|
28411
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28412
|
+
-------------------------------------------------------------
|
28413
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28414
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.7ms | Allocations: 290)
|
28415
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.2ms
|
28416
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28417
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28418
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28419
|
+
-------------------------------------------------------------
|
28420
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28421
|
+
-------------------------------------------------------------
|
28422
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28423
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 295)
|
28424
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 6.2ms
|
28425
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28426
|
+
[1m[35m (0.8ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28427
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28428
|
+
-------------------------------------------------------------
|
28429
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28430
|
+
-------------------------------------------------------------
|
28431
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28432
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.7ms | Allocations: 295)
|
28433
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28434
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.1ms | Allocations: 77)
|
28435
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 6.3ms
|
28436
|
+
Delivered mail 5d9510409c732_13b73fdb27039fd4986a1@rschneeman-ltm6.internal.salesforce.com.mail (10.5ms)
|
28437
|
+
Date: Wed, 02 Oct 2019 16:01:52 -0500
|
28438
|
+
From: from@example.com
|
28439
|
+
Reply-To: noreply@schneems.com
|
28440
|
+
To: foo@example.com
|
28441
|
+
Message-ID: <5d9510409c732_13b73fdb27039fd4986a1@rschneeman-ltm6.internal.salesforce.com.mail>
|
28442
|
+
Subject: hello world
|
28443
|
+
Mime-Version: 1.0
|
28444
|
+
Content-Type: multipart/alternative;
|
28445
|
+
boundary="--==_mimepart_5d9510409af4a_13b73fdb27039fd498568";
|
28446
|
+
charset=UTF-8
|
28447
|
+
Content-Transfer-Encoding: 7bit
|
28448
|
+
|
28449
|
+
|
28450
|
+
----==_mimepart_5d9510409af4a_13b73fdb27039fd498568
|
28451
|
+
Content-Type: text/plain;
|
28452
|
+
charset=UTF-8
|
28453
|
+
Content-Transfer-Encoding: 7bit
|
28454
|
+
|
28455
|
+
## Welcome!
|
28456
|
+
|
28457
|
+
----==_mimepart_5d9510409af4a_13b73fdb27039fd498568
|
28458
|
+
Content-Type: text/html;
|
28459
|
+
charset=UTF-8
|
28460
|
+
Content-Transfer-Encoding: 7bit
|
28461
|
+
|
28462
|
+
## Welcome!
|
28463
|
+
|
28464
|
+
----==_mimepart_5d9510409af4a_13b73fdb27039fd498568--
|
28465
|
+
|
28466
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28467
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28468
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28469
|
+
-------------------------------------------------------------
|
28470
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28471
|
+
-------------------------------------------------------------
|
28472
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28473
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.7ms | Allocations: 295)
|
28474
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28475
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.1ms | Allocations: 77)
|
28476
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.3ms
|
28477
|
+
Delivered mail 5d95105cc4fe0_13e43ffe4d437fd437899@rschneeman-ltm6.internal.salesforce.com.mail (6.4ms)
|
28478
|
+
Date: Wed, 02 Oct 2019 16:02:20 -0500
|
28479
|
+
From: from@example.com
|
28480
|
+
Reply-To: noreply@schneems.com
|
28481
|
+
To: foo@example.com
|
28482
|
+
Message-ID: <5d95105cc4fe0_13e43ffe4d437fd437899@rschneeman-ltm6.internal.salesforce.com.mail>
|
28483
|
+
Subject: hello world
|
28484
|
+
Mime-Version: 1.0
|
28485
|
+
Content-Type: multipart/alternative;
|
28486
|
+
boundary="--==_mimepart_5d95105cc4518_13e43ffe4d437fd437799";
|
28487
|
+
charset=UTF-8
|
28488
|
+
Content-Transfer-Encoding: 7bit
|
28489
|
+
|
28490
|
+
|
28491
|
+
----==_mimepart_5d95105cc4518_13e43ffe4d437fd437799
|
28492
|
+
Content-Type: text/plain;
|
28493
|
+
charset=UTF-8
|
28494
|
+
Content-Transfer-Encoding: 7bit
|
28495
|
+
|
28496
|
+
## Welcome!
|
28497
|
+
|
28498
|
+
----==_mimepart_5d95105cc4518_13e43ffe4d437fd437799
|
28499
|
+
Content-Type: text/html;
|
28500
|
+
charset=UTF-8
|
28501
|
+
Content-Transfer-Encoding: 7bit
|
28502
|
+
|
28503
|
+
## Welcome!
|
28504
|
+
|
28505
|
+
----==_mimepart_5d95105cc4518_13e43ffe4d437fd437799--
|
28506
|
+
|
28507
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28508
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28509
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28510
|
+
-------------------------------------------------------------
|
28511
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28512
|
+
-------------------------------------------------------------
|
28513
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28514
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 295)
|
28515
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28516
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.1ms | Allocations: 77)
|
28517
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.0ms
|
28518
|
+
Delivered mail 5d95106adb347_140b3ff7e8439fd4356e@rschneeman-ltm6.internal.salesforce.com.mail (5.7ms)
|
28519
|
+
Date: Wed, 02 Oct 2019 16:02:34 -0500
|
28520
|
+
From: from@example.com
|
28521
|
+
Reply-To: noreply@schneems.com
|
28522
|
+
To: foo@example.com
|
28523
|
+
Message-ID: <5d95106adb347_140b3ff7e8439fd4356e@rschneeman-ltm6.internal.salesforce.com.mail>
|
28524
|
+
Subject: hello world
|
28525
|
+
Mime-Version: 1.0
|
28526
|
+
Content-Type: multipart/alternative;
|
28527
|
+
boundary="--==_mimepart_5d95106ada994_140b3ff7e8439fd435540";
|
28528
|
+
charset=UTF-8
|
28529
|
+
Content-Transfer-Encoding: 7bit
|
28530
|
+
|
28531
|
+
|
28532
|
+
----==_mimepart_5d95106ada994_140b3ff7e8439fd435540
|
28533
|
+
Content-Type: text/plain;
|
28534
|
+
charset=UTF-8
|
28535
|
+
Content-Transfer-Encoding: 7bit
|
28536
|
+
|
28537
|
+
## Welcome!
|
28538
|
+
|
28539
|
+
----==_mimepart_5d95106ada994_140b3ff7e8439fd435540
|
28540
|
+
Content-Type: text/html;
|
28541
|
+
charset=UTF-8
|
28542
|
+
Content-Transfer-Encoding: 7bit
|
28543
|
+
|
28544
|
+
## Welcome!
|
28545
|
+
|
28546
|
+
----==_mimepart_5d95106ada994_140b3ff7e8439fd435540--
|
28547
|
+
|
28548
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28549
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28550
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28551
|
+
-------------------------------------------------------------
|
28552
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28553
|
+
-------------------------------------------------------------
|
28554
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28555
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 1.1ms | Allocations: 295)
|
28556
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28557
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 77)
|
28558
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 9.3ms
|
28559
|
+
Delivered mail 5d951083cfb86_14343ffee603c008308c8@rschneeman-ltm6.internal.salesforce.com.mail (6.2ms)
|
28560
|
+
Date: Wed, 02 Oct 2019 16:02:59 -0500
|
28561
|
+
From: from@example.com
|
28562
|
+
Reply-To: noreply@schneems.com
|
28563
|
+
To: foo@example.com
|
28564
|
+
Message-ID: <5d951083cfb86_14343ffee603c008308c8@rschneeman-ltm6.internal.salesforce.com.mail>
|
28565
|
+
Subject: hello world
|
28566
|
+
Mime-Version: 1.0
|
28567
|
+
Content-Type: multipart/alternative;
|
28568
|
+
boundary="--==_mimepart_5d951083cec5a_14343ffee603c0083075b";
|
28569
|
+
charset=UTF-8
|
28570
|
+
Content-Transfer-Encoding: 7bit
|
28571
|
+
|
28572
|
+
|
28573
|
+
----==_mimepart_5d951083cec5a_14343ffee603c0083075b
|
28574
|
+
Content-Type: text/plain;
|
28575
|
+
charset=UTF-8
|
28576
|
+
Content-Transfer-Encoding: 7bit
|
28577
|
+
|
28578
|
+
## Welcome!
|
28579
|
+
|
28580
|
+
----==_mimepart_5d951083cec5a_14343ffee603c0083075b
|
28581
|
+
Content-Type: text/html;
|
28582
|
+
charset=UTF-8
|
28583
|
+
Content-Transfer-Encoding: 7bit
|
28584
|
+
|
28585
|
+
## Welcome!
|
28586
|
+
|
28587
|
+
----==_mimepart_5d951083cec5a_14343ffee603c0083075b--
|
28588
|
+
|
28589
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28590
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28591
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28592
|
+
-------------------------------------------------------------
|
28593
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28594
|
+
-------------------------------------------------------------
|
28595
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28596
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.9ms | Allocations: 295)
|
28597
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28598
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 77)
|
28599
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 9.4ms
|
28600
|
+
Delivered mail 5d95108d4c691_14473fce1043c0107239d@rschneeman-ltm6.internal.salesforce.com.mail (6.0ms)
|
28601
|
+
Date: Wed, 02 Oct 2019 16:03:09 -0500
|
28602
|
+
From: from@example.com
|
28603
|
+
Reply-To: noreply@schneems.com
|
28604
|
+
To: foo@example.com
|
28605
|
+
Message-ID: <5d95108d4c691_14473fce1043c0107239d@rschneeman-ltm6.internal.salesforce.com.mail>
|
28606
|
+
Subject: hello world
|
28607
|
+
Mime-Version: 1.0
|
28608
|
+
Content-Type: multipart/alternative;
|
28609
|
+
boundary="--==_mimepart_5d95108d4b963_14473fce1043c01072257";
|
28610
|
+
charset=UTF-8
|
28611
|
+
Content-Transfer-Encoding: 7bit
|
28612
|
+
|
28613
|
+
|
28614
|
+
----==_mimepart_5d95108d4b963_14473fce1043c01072257
|
28615
|
+
Content-Type: text/plain;
|
28616
|
+
charset=UTF-8
|
28617
|
+
Content-Transfer-Encoding: 7bit
|
28618
|
+
|
28619
|
+
## Welcome!
|
28620
|
+
|
28621
|
+
----==_mimepart_5d95108d4b963_14473fce1043c01072257
|
28622
|
+
Content-Type: text/html;
|
28623
|
+
charset=UTF-8
|
28624
|
+
Content-Transfer-Encoding: 7bit
|
28625
|
+
|
28626
|
+
## Welcome!
|
28627
|
+
|
28628
|
+
----==_mimepart_5d95108d4b963_14473fce1043c01072257--
|
28629
|
+
|
28630
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28631
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28632
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28633
|
+
-------------------------------------------------------------
|
28634
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28635
|
+
-------------------------------------------------------------
|
28636
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28637
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.9ms | Allocations: 387)
|
28638
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28639
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 169)
|
28640
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 8.9ms
|
28641
|
+
Delivered mail 5d95109f2c5a6_14733fd220c37fd070878@rschneeman-ltm6.internal.salesforce.com.mail (6.9ms)
|
28642
|
+
Date: Wed, 02 Oct 2019 16:03:27 -0500
|
28643
|
+
From: from@example.com
|
28644
|
+
Reply-To: noreply@schneems.com
|
28645
|
+
To: foo@example.com
|
28646
|
+
Message-ID: <5d95109f2c5a6_14733fd220c37fd070878@rschneeman-ltm6.internal.salesforce.com.mail>
|
28647
|
+
Subject: hello world
|
28648
|
+
Mime-Version: 1.0
|
28649
|
+
Content-Type: multipart/alternative;
|
28650
|
+
boundary="--==_mimepart_5d95109f2ba8d_14733fd220c37fd070762";
|
28651
|
+
charset=UTF-8
|
28652
|
+
Content-Transfer-Encoding: 7bit
|
28653
|
+
|
28654
|
+
|
28655
|
+
----==_mimepart_5d95109f2ba8d_14733fd220c37fd070762
|
28656
|
+
Content-Type: text/plain;
|
28657
|
+
charset=UTF-8
|
28658
|
+
Content-Transfer-Encoding: 7bit
|
28659
|
+
|
28660
|
+
## Welcome!
|
28661
|
+
|
28662
|
+
----==_mimepart_5d95109f2ba8d_14733fd220c37fd070762
|
28663
|
+
Content-Type: text/html;
|
28664
|
+
charset=UTF-8
|
28665
|
+
Content-Transfer-Encoding: 7bit
|
28666
|
+
|
28667
|
+
## Welcome!
|
28668
|
+
|
28669
|
+
----==_mimepart_5d95109f2ba8d_14733fd220c37fd070762--
|
28670
|
+
|
28671
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28672
|
+
[1m[35m (1.2ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28673
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28674
|
+
-------------------------------------------------------------
|
28675
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28676
|
+
-------------------------------------------------------------
|
28677
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28678
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 1.0ms | Allocations: 482)
|
28679
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28680
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 263)
|
28681
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.9ms
|
28682
|
+
Delivered mail 5d9510b15c577_148a3fdc3b439fd46855d@rschneeman-ltm6.internal.salesforce.com.mail (5.9ms)
|
28683
|
+
Date: Wed, 02 Oct 2019 16:03:45 -0500
|
28684
|
+
From: from@example.com
|
28685
|
+
Reply-To: noreply@schneems.com
|
28686
|
+
To: foo@example.com
|
28687
|
+
Message-ID: <5d9510b15c577_148a3fdc3b439fd46855d@rschneeman-ltm6.internal.salesforce.com.mail>
|
28688
|
+
Subject: hello world
|
28689
|
+
Mime-Version: 1.0
|
28690
|
+
Content-Type: multipart/alternative;
|
28691
|
+
boundary="--==_mimepart_5d9510b15baa7_148a3fdc3b439fd468423";
|
28692
|
+
charset=UTF-8
|
28693
|
+
Content-Transfer-Encoding: 7bit
|
28694
|
+
|
28695
|
+
|
28696
|
+
----==_mimepart_5d9510b15baa7_148a3fdc3b439fd468423
|
28697
|
+
Content-Type: text/plain;
|
28698
|
+
charset=UTF-8
|
28699
|
+
Content-Transfer-Encoding: 7bit
|
28700
|
+
|
28701
|
+
## Welcome!
|
28702
|
+
|
28703
|
+
----==_mimepart_5d9510b15baa7_148a3fdc3b439fd468423
|
28704
|
+
Content-Type: text/html;
|
28705
|
+
charset=UTF-8
|
28706
|
+
Content-Transfer-Encoding: 7bit
|
28707
|
+
|
28708
|
+
## Welcome!
|
28709
|
+
|
28710
|
+
----==_mimepart_5d9510b15baa7_148a3fdc3b439fd468423--
|
28711
|
+
|
28712
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28713
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28714
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28715
|
+
-------------------------------------------------------------
|
28716
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28717
|
+
-------------------------------------------------------------
|
28718
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28719
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 482)
|
28720
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28721
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 263)
|
28722
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.4ms
|
28723
|
+
Delivered mail 5d9510b7e977a_149a3fe5d7839fd06886@rschneeman-ltm6.internal.salesforce.com.mail (6.3ms)
|
28724
|
+
Date: Wed, 02 Oct 2019 16:03:51 -0500
|
28725
|
+
From: from@example.com
|
28726
|
+
Reply-To: noreply@schneems.com
|
28727
|
+
To: foo@example.com
|
28728
|
+
Message-ID: <5d9510b7e977a_149a3fe5d7839fd06886@rschneeman-ltm6.internal.salesforce.com.mail>
|
28729
|
+
Subject: hello world
|
28730
|
+
Mime-Version: 1.0
|
28731
|
+
Content-Type: multipart/alternative;
|
28732
|
+
boundary="--==_mimepart_5d9510b7e8cd4_149a3fe5d7839fd068732";
|
28733
|
+
charset=UTF-8
|
28734
|
+
Content-Transfer-Encoding: 7bit
|
28735
|
+
|
28736
|
+
|
28737
|
+
----==_mimepart_5d9510b7e8cd4_149a3fe5d7839fd068732
|
28738
|
+
Content-Type: text/plain;
|
28739
|
+
charset=UTF-8
|
28740
|
+
Content-Transfer-Encoding: 7bit
|
28741
|
+
|
28742
|
+
## Welcome!
|
28743
|
+
|
28744
|
+
----==_mimepart_5d9510b7e8cd4_149a3fe5d7839fd068732
|
28745
|
+
Content-Type: text/html;
|
28746
|
+
charset=UTF-8
|
28747
|
+
Content-Transfer-Encoding: 7bit
|
28748
|
+
|
28749
|
+
## Welcome!
|
28750
|
+
|
28751
|
+
----==_mimepart_5d9510b7e8cd4_149a3fe5d7839fd068732--
|
28752
|
+
|
28753
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28754
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28755
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28756
|
+
-------------------------------------------------------------
|
28757
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28758
|
+
-------------------------------------------------------------
|
28759
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28760
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 297)
|
28761
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28762
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 79)
|
28763
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.2ms
|
28764
|
+
Delivered mail 5d9510dd28643_14f63fd91f039fd46809d@rschneeman-ltm6.internal.salesforce.com.mail (5.9ms)
|
28765
|
+
Date: Wed, 02 Oct 2019 16:04:29 -0500
|
28766
|
+
From: from@example.com
|
28767
|
+
Reply-To: noreply@schneems.com
|
28768
|
+
To: foo@example.com
|
28769
|
+
Message-ID: <5d9510dd28643_14f63fd91f039fd46809d@rschneeman-ltm6.internal.salesforce.com.mail>
|
28770
|
+
Subject: hello world
|
28771
|
+
Mime-Version: 1.0
|
28772
|
+
Content-Type: multipart/alternative;
|
28773
|
+
boundary="--==_mimepart_5d9510dd27c4f_14f63fd91f039fd46797";
|
28774
|
+
charset=UTF-8
|
28775
|
+
Content-Transfer-Encoding: 7bit
|
28776
|
+
|
28777
|
+
|
28778
|
+
----==_mimepart_5d9510dd27c4f_14f63fd91f039fd46797
|
28779
|
+
Content-Type: text/plain;
|
28780
|
+
charset=UTF-8
|
28781
|
+
Content-Transfer-Encoding: 7bit
|
28782
|
+
|
28783
|
+
## Welcome!
|
28784
|
+
|
28785
|
+
----==_mimepart_5d9510dd27c4f_14f63fd91f039fd46797
|
28786
|
+
Content-Type: text/html;
|
28787
|
+
charset=UTF-8
|
28788
|
+
Content-Transfer-Encoding: 7bit
|
28789
|
+
|
28790
|
+
## Welcome!
|
28791
|
+
|
28792
|
+
----==_mimepart_5d9510dd27c4f_14f63fd91f039fd46797--
|
28793
|
+
|
28794
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28795
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28796
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28797
|
+
-------------------------------------------------------------
|
28798
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28799
|
+
-------------------------------------------------------------
|
28800
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28801
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 297)
|
28802
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28803
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 79)
|
28804
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.0ms
|
28805
|
+
Delivered mail 5d95110d468a9_15353fd20403c008768b8@rschneeman-ltm6.internal.salesforce.com.mail (5.8ms)
|
28806
|
+
Date: Wed, 02 Oct 2019 16:05:17 -0500
|
28807
|
+
From: from@example.com
|
28808
|
+
Reply-To: noreply@schneems.com
|
28809
|
+
To: foo@example.com
|
28810
|
+
Message-ID: <5d95110d468a9_15353fd20403c008768b8@rschneeman-ltm6.internal.salesforce.com.mail>
|
28811
|
+
Subject: hello world
|
28812
|
+
Mime-Version: 1.0
|
28813
|
+
Content-Type: multipart/alternative;
|
28814
|
+
boundary="--==_mimepart_5d95110d45e5a_15353fd20403c008767e3";
|
28815
|
+
charset=UTF-8
|
28816
|
+
Content-Transfer-Encoding: 7bit
|
28817
|
+
|
28818
|
+
|
28819
|
+
----==_mimepart_5d95110d45e5a_15353fd20403c008767e3
|
28820
|
+
Content-Type: text/plain;
|
28821
|
+
charset=UTF-8
|
28822
|
+
Content-Transfer-Encoding: 7bit
|
28823
|
+
|
28824
|
+
## Welcome!
|
28825
|
+
|
28826
|
+
----==_mimepart_5d95110d45e5a_15353fd20403c008767e3
|
28827
|
+
Content-Type: text/html;
|
28828
|
+
charset=UTF-8
|
28829
|
+
Content-Transfer-Encoding: 7bit
|
28830
|
+
|
28831
|
+
## Welcome!
|
28832
|
+
|
28833
|
+
----==_mimepart_5d95110d45e5a_15353fd20403c008767e3--
|
28834
|
+
|
28835
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28836
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28837
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28838
|
+
-------------------------------------------------------------
|
28839
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28840
|
+
-------------------------------------------------------------
|
28841
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28842
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 1.0ms | Allocations: 300)
|
28843
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28844
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 81)
|
28845
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.4ms
|
28846
|
+
Delivered mail 5d9511382ccf5_159c3ff9f542000c70776@rschneeman-ltm6.internal.salesforce.com.mail (5.8ms)
|
28847
|
+
Date: Wed, 02 Oct 2019 16:06:00 -0500
|
28848
|
+
From: from@example.com
|
28849
|
+
Reply-To: noreply@schneems.com
|
28850
|
+
To: foo@example.com
|
28851
|
+
Message-ID: <5d9511382ccf5_159c3ff9f542000c70776@rschneeman-ltm6.internal.salesforce.com.mail>
|
28852
|
+
Subject: hello world
|
28853
|
+
Mime-Version: 1.0
|
28854
|
+
Content-Type: multipart/alternative;
|
28855
|
+
boundary="--==_mimepart_5d9511382c2b3_159c3ff9f542000c706f2";
|
28856
|
+
charset=UTF-8
|
28857
|
+
Content-Transfer-Encoding: 7bit
|
28858
|
+
|
28859
|
+
|
28860
|
+
----==_mimepart_5d9511382c2b3_159c3ff9f542000c706f2
|
28861
|
+
Content-Type: text/plain;
|
28862
|
+
charset=UTF-8
|
28863
|
+
Content-Transfer-Encoding: 7bit
|
28864
|
+
|
28865
|
+
## Welcome!
|
28866
|
+
|
28867
|
+
----==_mimepart_5d9511382c2b3_159c3ff9f542000c706f2
|
28868
|
+
Content-Type: text/html;
|
28869
|
+
charset=UTF-8
|
28870
|
+
Content-Transfer-Encoding: 7bit
|
28871
|
+
|
28872
|
+
## Welcome!
|
28873
|
+
|
28874
|
+
----==_mimepart_5d9511382c2b3_159c3ff9f542000c706f2--
|
28875
|
+
|
28876
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
28877
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28878
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28879
|
+
-------------------------------------------------------------
|
28880
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28881
|
+
-------------------------------------------------------------
|
28882
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28883
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 3.6ms | Allocations: 1270)
|
28884
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 8.6ms
|
28885
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28886
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28887
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28888
|
+
-------------------------------------------------------------
|
28889
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28890
|
+
-------------------------------------------------------------
|
28891
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28892
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 306)
|
28893
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28894
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 87)
|
28895
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.6ms
|
28896
|
+
Delivered mail 5d95119add4d5_16803fe289439fd0731a2@rschneeman-ltm6.internal.salesforce.com.mail (5.7ms)
|
28897
|
+
Date: Wed, 02 Oct 2019 16:07:38 -0500
|
28898
|
+
From: from@example.com
|
28899
|
+
Reply-To: noreply@schneems.com
|
28900
|
+
To: foo@example.com
|
28901
|
+
Message-ID: <5d95119add4d5_16803fe289439fd0731a2@rschneeman-ltm6.internal.salesforce.com.mail>
|
28902
|
+
Subject: hello world
|
28903
|
+
Mime-Version: 1.0
|
28904
|
+
Content-Type: multipart/alternative;
|
28905
|
+
boundary="--==_mimepart_5d95119adcb56_16803fe289439fd07307d";
|
28906
|
+
charset=UTF-8
|
28907
|
+
Content-Transfer-Encoding: 7bit
|
28908
|
+
|
28909
|
+
|
28910
|
+
----==_mimepart_5d95119adcb56_16803fe289439fd07307d
|
28911
|
+
Content-Type: text/plain;
|
28912
|
+
charset=UTF-8
|
28913
|
+
Content-Transfer-Encoding: 7bit
|
28914
|
+
|
28915
|
+
## Welcome!
|
28916
|
+
|
28917
|
+
----==_mimepart_5d95119adcb56_16803fe289439fd07307d
|
28918
|
+
Content-Type: text/html;
|
28919
|
+
charset=UTF-8
|
28920
|
+
Content-Transfer-Encoding: 7bit
|
28921
|
+
|
28922
|
+
## Welcome!
|
28923
|
+
|
28924
|
+
----==_mimepart_5d95119adcb56_16803fe289439fd07307d--
|
28925
|
+
|
28926
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28927
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28928
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28929
|
+
-------------------------------------------------------------
|
28930
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28931
|
+
-------------------------------------------------------------
|
28932
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28933
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.9ms | Allocations: 306)
|
28934
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28935
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 87)
|
28936
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.7ms
|
28937
|
+
Delivered mail 5d9511a9b17c1_16b33ffea7c2e00822469@rschneeman-ltm6.internal.salesforce.com.mail (5.8ms)
|
28938
|
+
Date: Wed, 02 Oct 2019 16:07:53 -0500
|
28939
|
+
From: from@example.com
|
28940
|
+
Reply-To: noreply@schneems.com
|
28941
|
+
To: foo@example.com
|
28942
|
+
Message-ID: <5d9511a9b17c1_16b33ffea7c2e00822469@rschneeman-ltm6.internal.salesforce.com.mail>
|
28943
|
+
Subject: hello world
|
28944
|
+
Mime-Version: 1.0
|
28945
|
+
Content-Type: multipart/alternative;
|
28946
|
+
boundary="--==_mimepart_5d9511a9b0dc3_16b33ffea7c2e008223b6";
|
28947
|
+
charset=UTF-8
|
28948
|
+
Content-Transfer-Encoding: 7bit
|
28949
|
+
|
28950
|
+
|
28951
|
+
----==_mimepart_5d9511a9b0dc3_16b33ffea7c2e008223b6
|
28952
|
+
Content-Type: text/plain;
|
28953
|
+
charset=UTF-8
|
28954
|
+
Content-Transfer-Encoding: 7bit
|
28955
|
+
|
28956
|
+
## Welcome!
|
28957
|
+
|
28958
|
+
----==_mimepart_5d9511a9b0dc3_16b33ffea7c2e008223b6
|
28959
|
+
Content-Type: text/html;
|
28960
|
+
charset=UTF-8
|
28961
|
+
Content-Transfer-Encoding: 7bit
|
28962
|
+
|
28963
|
+
## Welcome!
|
28964
|
+
|
28965
|
+
----==_mimepart_5d9511a9b0dc3_16b33ffea7c2e008223b6--
|
28966
|
+
|
28967
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
28968
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
28969
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28970
|
+
-------------------------------------------------------------
|
28971
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
28972
|
+
-------------------------------------------------------------
|
28973
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28974
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 302)
|
28975
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
28976
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 83)
|
28977
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.0ms
|
28978
|
+
Delivered mail 5d9511c0336ad_16ec3fcc1a839fd4540c@rschneeman-ltm6.internal.salesforce.com.mail (5.7ms)
|
28979
|
+
Date: Wed, 02 Oct 2019 16:08:16 -0500
|
28980
|
+
From: from@example.com
|
28981
|
+
Reply-To: noreply@schneems.com
|
28982
|
+
To: foo@example.com
|
28983
|
+
Message-ID: <5d9511c0336ad_16ec3fcc1a839fd4540c@rschneeman-ltm6.internal.salesforce.com.mail>
|
28984
|
+
Subject: hello world
|
28985
|
+
Mime-Version: 1.0
|
28986
|
+
Content-Type: multipart/alternative;
|
28987
|
+
boundary="--==_mimepart_5d9511c032cf3_16ec3fcc1a839fd4539aa";
|
28988
|
+
charset=UTF-8
|
28989
|
+
Content-Transfer-Encoding: 7bit
|
28990
|
+
|
28991
|
+
|
28992
|
+
----==_mimepart_5d9511c032cf3_16ec3fcc1a839fd4539aa
|
28993
|
+
Content-Type: text/plain;
|
28994
|
+
charset=UTF-8
|
28995
|
+
Content-Transfer-Encoding: 7bit
|
28996
|
+
|
28997
|
+
## Welcome!
|
28998
|
+
|
28999
|
+
----==_mimepart_5d9511c032cf3_16ec3fcc1a839fd4539aa
|
29000
|
+
Content-Type: text/html;
|
29001
|
+
charset=UTF-8
|
29002
|
+
Content-Transfer-Encoding: 7bit
|
29003
|
+
|
29004
|
+
## Welcome!
|
29005
|
+
|
29006
|
+
----==_mimepart_5d9511c032cf3_16ec3fcc1a839fd4539aa--
|
29007
|
+
|
29008
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29009
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
29010
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
29011
|
+
-------------------------------------------------------------
|
29012
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
29013
|
+
-------------------------------------------------------------
|
29014
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29015
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.7ms | Allocations: 298)
|
29016
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29017
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.1ms | Allocations: 80)
|
29018
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.8ms
|
29019
|
+
Delivered mail 5d9511f4e4339_176e3fd9bac3c0203152a@rschneeman-ltm6.internal.salesforce.com.mail (7.4ms)
|
29020
|
+
Date: Wed, 02 Oct 2019 16:09:08 -0500
|
29021
|
+
From: from@example.com
|
29022
|
+
Reply-To: noreply@schneems.com
|
29023
|
+
To: foo@example.com
|
29024
|
+
Message-ID: <5d9511f4e4339_176e3fd9bac3c0203152a@rschneeman-ltm6.internal.salesforce.com.mail>
|
29025
|
+
Subject: hello world
|
29026
|
+
Mime-Version: 1.0
|
29027
|
+
Content-Type: multipart/alternative;
|
29028
|
+
boundary="--==_mimepart_5d9511f4e3719_176e3fd9bac3c0203141e";
|
29029
|
+
charset=UTF-8
|
29030
|
+
Content-Transfer-Encoding: 7bit
|
29031
|
+
|
29032
|
+
|
29033
|
+
----==_mimepart_5d9511f4e3719_176e3fd9bac3c0203141e
|
29034
|
+
Content-Type: text/plain;
|
29035
|
+
charset=UTF-8
|
29036
|
+
Content-Transfer-Encoding: 7bit
|
29037
|
+
|
29038
|
+
## Welcome!
|
29039
|
+
|
29040
|
+
----==_mimepart_5d9511f4e3719_176e3fd9bac3c0203141e
|
29041
|
+
Content-Type: text/html;
|
29042
|
+
charset=UTF-8
|
29043
|
+
Content-Transfer-Encoding: 7bit
|
29044
|
+
|
29045
|
+
## Welcome!
|
29046
|
+
|
29047
|
+
----==_mimepart_5d9511f4e3719_176e3fd9bac3c0203141e--
|
29048
|
+
|
29049
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29050
|
+
[1m[35m (1.4ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
29051
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29052
|
+
-------------------------------------------------------------
|
29053
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
29054
|
+
-------------------------------------------------------------
|
29055
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29056
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 302)
|
29057
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29058
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 83)
|
29059
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.4ms
|
29060
|
+
Delivered mail 5d951209e5461_17843ff25ac37fd021750@rschneeman-ltm6.internal.salesforce.com.mail (5.8ms)
|
29061
|
+
Date: Wed, 02 Oct 2019 16:09:29 -0500
|
29062
|
+
From: from@example.com
|
29063
|
+
Reply-To: noreply@schneems.com
|
29064
|
+
To: foo@example.com
|
29065
|
+
Message-ID: <5d951209e5461_17843ff25ac37fd021750@rschneeman-ltm6.internal.salesforce.com.mail>
|
29066
|
+
Subject: hello world
|
29067
|
+
Mime-Version: 1.0
|
29068
|
+
Content-Type: multipart/alternative;
|
29069
|
+
boundary="--==_mimepart_5d951209e4aa6_17843ff25ac37fd0216a4";
|
29070
|
+
charset=UTF-8
|
29071
|
+
Content-Transfer-Encoding: 7bit
|
29072
|
+
|
29073
|
+
|
29074
|
+
----==_mimepart_5d951209e4aa6_17843ff25ac37fd0216a4
|
29075
|
+
Content-Type: text/plain;
|
29076
|
+
charset=UTF-8
|
29077
|
+
Content-Transfer-Encoding: 7bit
|
29078
|
+
|
29079
|
+
## Welcome!
|
29080
|
+
|
29081
|
+
----==_mimepart_5d951209e4aa6_17843ff25ac37fd0216a4
|
29082
|
+
Content-Type: text/html;
|
29083
|
+
charset=UTF-8
|
29084
|
+
Content-Transfer-Encoding: 7bit
|
29085
|
+
|
29086
|
+
## Welcome!
|
29087
|
+
|
29088
|
+
----==_mimepart_5d951209e4aa6_17843ff25ac37fd0216a4--
|
29089
|
+
|
29090
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29091
|
+
[1m[35m (0.9ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
29092
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29093
|
+
-------------------------------------------------------------
|
29094
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
29095
|
+
-------------------------------------------------------------
|
29096
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29097
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.8ms | Allocations: 303)
|
29098
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29099
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 85)
|
29100
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 7.1ms
|
29101
|
+
Delivered mail 5d951215e9be2_17973fc051c3c0205708f@rschneeman-ltm6.internal.salesforce.com.mail (6.0ms)
|
29102
|
+
Date: Wed, 02 Oct 2019 16:09:41 -0500
|
29103
|
+
From: from@example.com
|
29104
|
+
Reply-To: noreply@schneems.com
|
29105
|
+
To: foo@example.com
|
29106
|
+
Message-ID: <5d951215e9be2_17973fc051c3c0205708f@rschneeman-ltm6.internal.salesforce.com.mail>
|
29107
|
+
Subject: hello world
|
29108
|
+
Mime-Version: 1.0
|
29109
|
+
Content-Type: multipart/alternative;
|
29110
|
+
boundary="--==_mimepart_5d951215e91f4_17973fc051c3c020569da";
|
29111
|
+
charset=UTF-8
|
29112
|
+
Content-Transfer-Encoding: 7bit
|
29113
|
+
|
29114
|
+
|
29115
|
+
----==_mimepart_5d951215e91f4_17973fc051c3c020569da
|
29116
|
+
Content-Type: text/plain;
|
29117
|
+
charset=UTF-8
|
29118
|
+
Content-Transfer-Encoding: 7bit
|
29119
|
+
|
29120
|
+
## Welcome!
|
29121
|
+
|
29122
|
+
----==_mimepart_5d951215e91f4_17973fc051c3c020569da
|
29123
|
+
Content-Type: text/html;
|
29124
|
+
charset=UTF-8
|
29125
|
+
Content-Transfer-Encoding: 7bit
|
29126
|
+
|
29127
|
+
## Welcome!
|
29128
|
+
|
29129
|
+
----==_mimepart_5d951215e91f4_17973fc051c3c020569da--
|
29130
|
+
|
29131
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29132
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
29133
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29134
|
+
-------------------------------------------------------------
|
29135
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
29136
|
+
-------------------------------------------------------------
|
29137
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29138
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 43.3ms | Allocations: 18491)
|
29139
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29140
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 85)
|
29141
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 49.5ms
|
29142
|
+
Delivered mail 5d9512b03b119_18813fd964c2dfd0387c1@rschneeman-ltm6.internal.salesforce.com.mail (5.7ms)
|
29143
|
+
Date: Wed, 02 Oct 2019 16:12:16 -0500
|
29144
|
+
From: from@example.com
|
29145
|
+
Reply-To: noreply@schneems.com
|
29146
|
+
To: foo@example.com
|
29147
|
+
Message-ID: <5d9512b03b119_18813fd964c2dfd0387c1@rschneeman-ltm6.internal.salesforce.com.mail>
|
29148
|
+
Subject: hello world
|
29149
|
+
Mime-Version: 1.0
|
29150
|
+
Content-Type: multipart/alternative;
|
29151
|
+
boundary="--==_mimepart_5d9512b03a6ab_18813fd964c2dfd038668";
|
29152
|
+
charset=UTF-8
|
29153
|
+
Content-Transfer-Encoding: 7bit
|
29154
|
+
|
29155
|
+
|
29156
|
+
----==_mimepart_5d9512b03a6ab_18813fd964c2dfd038668
|
29157
|
+
Content-Type: text/plain;
|
29158
|
+
charset=UTF-8
|
29159
|
+
Content-Transfer-Encoding: 7bit
|
29160
|
+
|
29161
|
+
## Welcome!
|
29162
|
+
|
29163
|
+
----==_mimepart_5d9512b03a6ab_18813fd964c2dfd038668
|
29164
|
+
Content-Type: text/html;
|
29165
|
+
charset=UTF-8
|
29166
|
+
Content-Transfer-Encoding: 7bit
|
29167
|
+
|
29168
|
+
<h2 id="welcome">Welcome!</h2>
|
29169
|
+
|
29170
|
+
----==_mimepart_5d9512b03a6ab_18813fd964c2dfd038668--
|
29171
|
+
|
29172
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29173
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.5ms | Allocations: 199)
|
29174
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29175
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 5)
|
29176
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 11.8ms
|
29177
|
+
Delivered mail 5d9512b03f153_18813fd964c2dfd038921@rschneeman-ltm6.internal.salesforce.com.mail (1.8ms)
|
29178
|
+
Date: Wed, 02 Oct 2019 16:12:16 -0500
|
29179
|
+
From: from@example.com
|
29180
|
+
Reply-To: noreply@schneems.com
|
29181
|
+
To: foo@example.com
|
29182
|
+
Message-ID: <5d9512b03f153_18813fd964c2dfd038921@rschneeman-ltm6.internal.salesforce.com.mail>
|
29183
|
+
Subject: hello world
|
29184
|
+
Mime-Version: 1.0
|
29185
|
+
Content-Type: multipart/alternative;
|
29186
|
+
boundary="--==_mimepart_5d9512b03ed40_18813fd964c2dfd038846";
|
29187
|
+
charset=UTF-8
|
29188
|
+
Content-Transfer-Encoding: 7bit
|
29189
|
+
|
29190
|
+
|
29191
|
+
----==_mimepart_5d9512b03ed40_18813fd964c2dfd038846
|
29192
|
+
Content-Type: text/plain;
|
29193
|
+
charset=UTF-8
|
29194
|
+
Content-Transfer-Encoding: 7bit
|
29195
|
+
|
29196
|
+
## Welcome!
|
29197
|
+
|
29198
|
+
----==_mimepart_5d9512b03ed40_18813fd964c2dfd038846
|
29199
|
+
Content-Type: text/html;
|
29200
|
+
charset=UTF-8
|
29201
|
+
Content-Transfer-Encoding: 7bit
|
29202
|
+
|
29203
|
+
<h2 id="welcome">Welcome!</h2>
|
29204
|
+
|
29205
|
+
----==_mimepart_5d9512b03ed40_18813fd964c2dfd038846--
|
29206
|
+
|
29207
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29208
|
+
[1m[35m (1.5ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
29209
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29210
|
+
-------------------------------------------------------------
|
29211
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
29212
|
+
-------------------------------------------------------------
|
29213
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29214
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 59.6ms | Allocations: 18482)
|
29215
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29216
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.2ms | Allocations: 77)
|
29217
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 67.7ms
|
29218
|
+
Delivered mail 5d9512bbd82fe_18943fc1e442e01047652@rschneeman-ltm6.internal.salesforce.com.mail (6.1ms)
|
29219
|
+
Date: Wed, 02 Oct 2019 16:12:27 -0500
|
29220
|
+
From: from@example.com
|
29221
|
+
Reply-To: noreply@schneems.com
|
29222
|
+
To: foo@example.com
|
29223
|
+
Message-ID: <5d9512bbd82fe_18943fc1e442e01047652@rschneeman-ltm6.internal.salesforce.com.mail>
|
29224
|
+
Subject: hello world
|
29225
|
+
Mime-Version: 1.0
|
29226
|
+
Content-Type: multipart/alternative;
|
29227
|
+
boundary="--==_mimepart_5d9512bbd788f_18943fc1e442e01047535";
|
29228
|
+
charset=UTF-8
|
29229
|
+
Content-Transfer-Encoding: 7bit
|
29230
|
+
|
29231
|
+
|
29232
|
+
----==_mimepart_5d9512bbd788f_18943fc1e442e01047535
|
29233
|
+
Content-Type: text/plain;
|
29234
|
+
charset=UTF-8
|
29235
|
+
Content-Transfer-Encoding: 7bit
|
29236
|
+
|
29237
|
+
## Welcome!
|
29238
|
+
|
29239
|
+
----==_mimepart_5d9512bbd788f_18943fc1e442e01047535
|
29240
|
+
Content-Type: text/html;
|
29241
|
+
charset=UTF-8
|
29242
|
+
Content-Transfer-Encoding: 7bit
|
29243
|
+
|
29244
|
+
<h2 id="welcome">Welcome!</h2>
|
29245
|
+
|
29246
|
+
----==_mimepart_5d9512bbd788f_18943fc1e442e01047535--
|
29247
|
+
|
29248
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29249
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.4ms | Allocations: 199)
|
29250
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29251
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 5)
|
29252
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 10.8ms
|
29253
|
+
Delivered mail 5d9512bbdc17f_18943fc1e442e010478ac@rschneeman-ltm6.internal.salesforce.com.mail (1.9ms)
|
29254
|
+
Date: Wed, 02 Oct 2019 16:12:27 -0500
|
29255
|
+
From: from@example.com
|
29256
|
+
Reply-To: noreply@schneems.com
|
29257
|
+
To: foo@example.com
|
29258
|
+
Message-ID: <5d9512bbdc17f_18943fc1e442e010478ac@rschneeman-ltm6.internal.salesforce.com.mail>
|
29259
|
+
Subject: hello world
|
29260
|
+
Mime-Version: 1.0
|
29261
|
+
Content-Type: multipart/alternative;
|
29262
|
+
boundary="--==_mimepart_5d9512bbdbd32_18943fc1e442e01047729";
|
29263
|
+
charset=UTF-8
|
29264
|
+
Content-Transfer-Encoding: 7bit
|
29265
|
+
|
29266
|
+
|
29267
|
+
----==_mimepart_5d9512bbdbd32_18943fc1e442e01047729
|
29268
|
+
Content-Type: text/plain;
|
29269
|
+
charset=UTF-8
|
29270
|
+
Content-Transfer-Encoding: 7bit
|
29271
|
+
|
29272
|
+
## Welcome!
|
29273
|
+
|
29274
|
+
----==_mimepart_5d9512bbdbd32_18943fc1e442e01047729
|
29275
|
+
Content-Type: text/html;
|
29276
|
+
charset=UTF-8
|
29277
|
+
Content-Transfer-Encoding: 7bit
|
29278
|
+
|
29279
|
+
<h2 id="welcome">Welcome!</h2>
|
29280
|
+
|
29281
|
+
----==_mimepart_5d9512bbdbd32_18943fc1e442e01047729--
|
29282
|
+
|
29283
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29284
|
+
[1m[35m (1.0ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
29285
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29286
|
+
----------------------------------------------------------
|
29287
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
29288
|
+
----------------------------------------------------------
|
29289
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29290
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29291
|
+
----------------------------------------------------------------
|
29292
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
29293
|
+
----------------------------------------------------------------
|
29294
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29295
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29296
|
+
---------------------------------------
|
29297
|
+
MarkdownEngineTest: test_can_set_engine
|
29298
|
+
---------------------------------------
|
29299
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29300
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29301
|
+
-------------------------------------------------------------
|
29302
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
29303
|
+
-------------------------------------------------------------
|
29304
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29305
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 1.6ms | Allocations: 486)
|
29306
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29307
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.3ms | Allocations: 77)
|
29308
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 8.0ms
|
29309
|
+
Delivered mail 5d9512c42d3b2_189e3fd2ab43c02070554@rschneeman-ltm6.internal.salesforce.com.mail (14.0ms)
|
29310
|
+
Date: Wed, 02 Oct 2019 16:12:36 -0500
|
29311
|
+
From: from@example.com
|
29312
|
+
Reply-To: noreply@schneems.com
|
29313
|
+
To: foo@example.com
|
29314
|
+
Message-ID: <5d9512c42d3b2_189e3fd2ab43c02070554@rschneeman-ltm6.internal.salesforce.com.mail>
|
29315
|
+
Subject: hello world
|
29316
|
+
Mime-Version: 1.0
|
29317
|
+
Content-Type: multipart/alternative;
|
29318
|
+
boundary="--==_mimepart_5d9512c42c9e9_189e3fd2ab43c02070486";
|
29319
|
+
charset=UTF-8
|
29320
|
+
Content-Transfer-Encoding: 7bit
|
29321
|
+
|
29322
|
+
|
29323
|
+
----==_mimepart_5d9512c42c9e9_189e3fd2ab43c02070486
|
29324
|
+
Content-Type: text/plain;
|
29325
|
+
charset=UTF-8
|
29326
|
+
Content-Transfer-Encoding: 7bit
|
29327
|
+
|
29328
|
+
## Welcome!
|
29329
|
+
|
29330
|
+
----==_mimepart_5d9512c42c9e9_189e3fd2ab43c02070486
|
29331
|
+
Content-Type: text/html;
|
29332
|
+
charset=UTF-8
|
29333
|
+
Content-Transfer-Encoding: 7bit
|
29334
|
+
|
29335
|
+
<h2 id="welcome">Welcome!</h2>
|
29336
|
+
|
29337
|
+
----==_mimepart_5d9512c42c9e9_189e3fd2ab43c02070486--
|
29338
|
+
|
29339
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29340
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.4ms | Allocations: 197)
|
29341
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29342
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 5)
|
29343
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.6ms
|
29344
|
+
Delivered mail 5d9512c430cec_189e3fd2ab43c020707df@rschneeman-ltm6.internal.salesforce.com.mail (1.6ms)
|
29345
|
+
Date: Wed, 02 Oct 2019 16:12:36 -0500
|
29346
|
+
From: from@example.com
|
29347
|
+
Reply-To: noreply@schneems.com
|
29348
|
+
To: foo@example.com
|
29349
|
+
Message-ID: <5d9512c430cec_189e3fd2ab43c020707df@rschneeman-ltm6.internal.salesforce.com.mail>
|
29350
|
+
Subject: hello world
|
29351
|
+
Mime-Version: 1.0
|
29352
|
+
Content-Type: multipart/alternative;
|
29353
|
+
boundary="--==_mimepart_5d9512c430952_189e3fd2ab43c0207068c";
|
29354
|
+
charset=UTF-8
|
29355
|
+
Content-Transfer-Encoding: 7bit
|
29356
|
+
|
29357
|
+
|
29358
|
+
----==_mimepart_5d9512c430952_189e3fd2ab43c0207068c
|
29359
|
+
Content-Type: text/plain;
|
29360
|
+
charset=UTF-8
|
29361
|
+
Content-Transfer-Encoding: 7bit
|
29362
|
+
|
29363
|
+
## Welcome!
|
29364
|
+
|
29365
|
+
----==_mimepart_5d9512c430952_189e3fd2ab43c0207068c
|
29366
|
+
Content-Type: text/html;
|
29367
|
+
charset=UTF-8
|
29368
|
+
Content-Transfer-Encoding: 7bit
|
29369
|
+
|
29370
|
+
<h2 id="welcome">Welcome!</h2>
|
29371
|
+
|
29372
|
+
----==_mimepart_5d9512c430952_189e3fd2ab43c0207068c--
|
29373
|
+
|
29374
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29375
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29376
|
+
----------------------------------------------------
|
29377
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
29378
|
+
----------------------------------------------------
|
29379
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
29380
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.5ms | Allocations: 278)
|
29381
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
29382
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.1ms | Allocations: 83)
|
29383
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 2.2ms
|
29384
|
+
Delivered mail 5d9512c432186_189e3fd2ab43c020709d6@rschneeman-ltm6.internal.salesforce.com.mail (2.0ms)
|
29385
|
+
Date: Wed, 02 Oct 2019 16:12:36 -0500
|
29386
|
+
From: from@example.com
|
29387
|
+
Reply-To: noreply@schneems.com
|
29388
|
+
To: foo@example.com
|
29389
|
+
Message-ID: <5d9512c432186_189e3fd2ab43c020709d6@rschneeman-ltm6.internal.salesforce.com.mail>
|
29390
|
+
Subject: hello world
|
29391
|
+
Mime-Version: 1.0
|
29392
|
+
Content-Type: multipart/alternative;
|
29393
|
+
boundary="--==_mimepart_5d9512c431d2a_189e3fd2ab43c020708d8";
|
29394
|
+
charset=UTF-8
|
29395
|
+
Content-Transfer-Encoding: 7bit
|
29396
|
+
|
29397
|
+
|
29398
|
+
----==_mimepart_5d9512c431d2a_189e3fd2ab43c020708d8
|
29399
|
+
Content-Type: text/plain;
|
29400
|
+
charset=UTF-8
|
29401
|
+
Content-Transfer-Encoding: 7bit
|
29402
|
+
|
29403
|
+
## Leading
|
29404
|
+
|
29405
|
+
----==_mimepart_5d9512c431d2a_189e3fd2ab43c020708d8
|
29406
|
+
Content-Type: text/html;
|
29407
|
+
charset=UTF-8
|
29408
|
+
Content-Transfer-Encoding: 7bit
|
29409
|
+
|
29410
|
+
<h2 id="leading">Leading</h2>
|
29411
|
+
|
29412
|
+
----==_mimepart_5d9512c431d2a_189e3fd2ab43c020708d8--
|
29413
|
+
|
29414
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29415
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29416
|
+
----------------------------------------------
|
29417
|
+
TemplateHandlerTest: test_.md_template_handler
|
29418
|
+
----------------------------------------------
|
29419
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 16:12:36 -0500
|
29420
|
+
Processing by HandlersController#show as HTML
|
29421
|
+
Parameters: {"id"=>"plain_markdown"}
|
29422
|
+
Rendering handlers/plain_markdown.html.md within layouts/application
|
29423
|
+
Rendered handlers/plain_markdown.html.md within layouts/application (Duration: 1.0ms | Allocations: 263)
|
29424
|
+
Completed 200 OK in 144ms (Views: 143.7ms | ActiveRecord: 0.0ms | Allocations: 288249)
|
29425
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29426
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29427
|
+
----------------------------------------
|
29428
|
+
TemplateHandlerTest: test_dual_templates
|
29429
|
+
----------------------------------------
|
29430
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
29431
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 1.1ms | Allocations: 329)
|
29432
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
29433
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.2ms | Allocations: 78)
|
29434
|
+
UserNoLayoutMailer#contact: processed outbound mail in 3.8ms
|
29435
|
+
Delivered mail 5d9512c46a3f9_189e3fd2ab43c020711b6@rschneeman-ltm6.internal.salesforce.com.mail (2.5ms)
|
29436
|
+
Date: Wed, 02 Oct 2019 16:12:36 -0500
|
29437
|
+
From: from@example.com
|
29438
|
+
Reply-To: noreply@schneems.com
|
29439
|
+
To: foo@example.com
|
29440
|
+
Message-ID: <5d9512c46a3f9_189e3fd2ab43c020711b6@rschneeman-ltm6.internal.salesforce.com.mail>
|
29441
|
+
Subject: hello world
|
29442
|
+
Mime-Version: 1.0
|
29443
|
+
Content-Type: multipart/alternative;
|
29444
|
+
boundary="--==_mimepart_5d9512c469ed0_189e3fd2ab43c02071051";
|
29445
|
+
charset=UTF-8
|
29446
|
+
Content-Transfer-Encoding: 7bit
|
29447
|
+
|
29448
|
+
|
29449
|
+
----==_mimepart_5d9512c469ed0_189e3fd2ab43c02071051
|
29450
|
+
Content-Type: text/plain;
|
29451
|
+
charset=UTF-8
|
29452
|
+
Content-Transfer-Encoding: 7bit
|
29453
|
+
|
29454
|
+
Dual templates **rock**!
|
29455
|
+
|
29456
|
+
----==_mimepart_5d9512c469ed0_189e3fd2ab43c02071051
|
29457
|
+
Content-Type: text/html;
|
29458
|
+
charset=UTF-8
|
29459
|
+
Content-Transfer-Encoding: 7bit
|
29460
|
+
|
29461
|
+
<p>Dual templates <strong>rock</strong>!</p>
|
29462
|
+
|
29463
|
+
----==_mimepart_5d9512c469ed0_189e3fd2ab43c02071051--
|
29464
|
+
|
29465
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29466
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29467
|
+
---------------------------------------------------
|
29468
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
29469
|
+
---------------------------------------------------
|
29470
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
29471
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 4.4ms | Allocations: 616)
|
29472
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
29473
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.2ms | Allocations: 78)
|
29474
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 6.6ms
|
29475
|
+
Delivered mail 5d9512c46ccf1_189e3fd2ab43c020713b8@rschneeman-ltm6.internal.salesforce.com.mail (1.9ms)
|
29476
|
+
Date: Wed, 02 Oct 2019 16:12:36 -0500
|
29477
|
+
From: from@example.com
|
29478
|
+
Reply-To: noreply@schneems.com
|
29479
|
+
To: foo@example.com
|
29480
|
+
Message-ID: <5d9512c46ccf1_189e3fd2ab43c020713b8@rschneeman-ltm6.internal.salesforce.com.mail>
|
29481
|
+
Subject: hello world
|
29482
|
+
Mime-Version: 1.0
|
29483
|
+
Content-Type: multipart/alternative;
|
29484
|
+
boundary="--==_mimepart_5d9512c46c89a_189e3fd2ab43c020712b7";
|
29485
|
+
charset=UTF-8
|
29486
|
+
Content-Transfer-Encoding: 7bit
|
29487
|
+
|
29488
|
+
|
29489
|
+
----==_mimepart_5d9512c46c89a_189e3fd2ab43c020712b7
|
29490
|
+
Content-Type: text/plain;
|
29491
|
+
charset=UTF-8
|
29492
|
+
Content-Transfer-Encoding: 7bit
|
29493
|
+
|
29494
|
+
## Leading again
|
29495
|
+
|
29496
|
+
----==_mimepart_5d9512c46c89a_189e3fd2ab43c020712b7
|
29497
|
+
Content-Type: text/html;
|
29498
|
+
charset=UTF-8
|
29499
|
+
Content-Transfer-Encoding: 7bit
|
29500
|
+
|
29501
|
+
<pre><code> ## Leading again
|
29502
|
+
</code></pre>
|
29503
|
+
|
29504
|
+
----==_mimepart_5d9512c46c89a_189e3fd2ab43c020712b7--
|
29505
|
+
|
29506
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29507
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29508
|
+
-------------------------------------
|
29509
|
+
LayoutsTest: test_layout_renders_fine
|
29510
|
+
-------------------------------------
|
29511
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
29512
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.7ms | Allocations: 270)
|
29513
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
29514
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.1ms | Allocations: 77)
|
29515
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 4.0ms
|
29516
|
+
Delivered mail 5d9512c46f73e_189e3fd2ab43c02071564@rschneeman-ltm6.internal.salesforce.com.mail (1.9ms)
|
29517
|
+
Date: Wed, 02 Oct 2019 16:12:36 -0500
|
29518
|
+
From: from@example.com
|
29519
|
+
Reply-To: noreply@schneems.com
|
29520
|
+
To: foo@example.com
|
29521
|
+
Message-ID: <5d9512c46f73e_189e3fd2ab43c02071564@rschneeman-ltm6.internal.salesforce.com.mail>
|
29522
|
+
Subject: hello world
|
29523
|
+
Mime-Version: 1.0
|
29524
|
+
Content-Type: multipart/alternative;
|
29525
|
+
boundary="--==_mimepart_5d9512c46f2be_189e3fd2ab43c02071422";
|
29526
|
+
charset=UTF-8
|
29527
|
+
Content-Transfer-Encoding: 7bit
|
29528
|
+
|
29529
|
+
|
29530
|
+
----==_mimepart_5d9512c46f2be_189e3fd2ab43c02071422
|
29531
|
+
Content-Type: text/plain;
|
29532
|
+
charset=UTF-8
|
29533
|
+
Content-Transfer-Encoding: 7bit
|
29534
|
+
|
29535
|
+
TEXT## Welcome!
|
29536
|
+
|
29537
|
+
|
29538
|
+
----==_mimepart_5d9512c46f2be_189e3fd2ab43c02071422
|
29539
|
+
Content-Type: text/html;
|
29540
|
+
charset=UTF-8
|
29541
|
+
Content-Transfer-Encoding: 7bit
|
29542
|
+
|
29543
|
+
HTML<h2 id="welcome">Welcome!</h2>
|
29544
|
+
|
29545
|
+
----==_mimepart_5d9512c46f2be_189e3fd2ab43c02071422--
|
29546
|
+
|
29547
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29548
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29549
|
+
---------------------------
|
29550
|
+
LayoutsTest: test_no_layout
|
29551
|
+
---------------------------
|
29552
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29553
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.4ms | Allocations: 195)
|
29554
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29555
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 5)
|
29556
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.6ms
|
29557
|
+
Delivered mail 5d9512c47098f_189e3fd2ab43c0207178e@rschneeman-ltm6.internal.salesforce.com.mail (1.7ms)
|
29558
|
+
Date: Wed, 02 Oct 2019 16:12:36 -0500
|
29559
|
+
From: from@example.com
|
29560
|
+
Reply-To: noreply@schneems.com
|
29561
|
+
To: foo@example.com
|
29562
|
+
Message-ID: <5d9512c47098f_189e3fd2ab43c0207178e@rschneeman-ltm6.internal.salesforce.com.mail>
|
29563
|
+
Subject: hello world
|
29564
|
+
Mime-Version: 1.0
|
29565
|
+
Content-Type: multipart/alternative;
|
29566
|
+
boundary="--==_mimepart_5d9512c47056f_189e3fd2ab43c020716ad";
|
29567
|
+
charset=UTF-8
|
29568
|
+
Content-Transfer-Encoding: 7bit
|
29569
|
+
|
29570
|
+
|
29571
|
+
----==_mimepart_5d9512c47056f_189e3fd2ab43c020716ad
|
29572
|
+
Content-Type: text/plain;
|
29573
|
+
charset=UTF-8
|
29574
|
+
Content-Transfer-Encoding: 7bit
|
29575
|
+
|
29576
|
+
## Welcome!
|
29577
|
+
|
29578
|
+
----==_mimepart_5d9512c47056f_189e3fd2ab43c020716ad
|
29579
|
+
Content-Type: text/html;
|
29580
|
+
charset=UTF-8
|
29581
|
+
Content-Transfer-Encoding: 7bit
|
29582
|
+
|
29583
|
+
<h2 id="welcome">Welcome!</h2>
|
29584
|
+
|
29585
|
+
----==_mimepart_5d9512c47056f_189e3fd2ab43c020716ad--
|
29586
|
+
|
29587
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29588
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29589
|
+
----------------------------------------------
|
29590
|
+
ExtActionMailerTest: test_monkeypatch_location
|
29591
|
+
----------------------------------------------
|
29592
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29593
|
+
[1m[35m (1.3ms)[0m [1m[34mSELECT sqlite_version(*)[0m
|
29594
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29595
|
+
----------------------------------------------
|
29596
|
+
ExtActionMailerTest: test_monkeypatch_location
|
29597
|
+
----------------------------------------------
|
29598
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29599
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29600
|
+
----------------------------------------
|
29601
|
+
TemplateHandlerTest: test_dual_templates
|
29602
|
+
----------------------------------------
|
29603
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
29604
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 46.1ms | Allocations: 18537)
|
29605
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
29606
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.2ms | Allocations: 78)
|
29607
|
+
UserNoLayoutMailer#contact: processed outbound mail in 55.2ms
|
29608
|
+
Delivered mail 5d951336d9cc8_19873fc65ac2e0108169d@rschneeman-ltm6.internal.salesforce.com.mail (6.2ms)
|
29609
|
+
Date: Wed, 02 Oct 2019 16:14:30 -0500
|
29610
|
+
From: from@example.com
|
29611
|
+
Reply-To: noreply@schneems.com
|
29612
|
+
To: foo@example.com
|
29613
|
+
Message-ID: <5d951336d9cc8_19873fc65ac2e0108169d@rschneeman-ltm6.internal.salesforce.com.mail>
|
29614
|
+
Subject: hello world
|
29615
|
+
Mime-Version: 1.0
|
29616
|
+
Content-Type: multipart/alternative;
|
29617
|
+
boundary="--==_mimepart_5d951336d8fac_19873fc65ac2e01081525";
|
29618
|
+
charset=UTF-8
|
29619
|
+
Content-Transfer-Encoding: 7bit
|
29620
|
+
|
29621
|
+
|
29622
|
+
----==_mimepart_5d951336d8fac_19873fc65ac2e01081525
|
29623
|
+
Content-Type: text/plain;
|
29624
|
+
charset=UTF-8
|
29625
|
+
Content-Transfer-Encoding: 7bit
|
29626
|
+
|
29627
|
+
Dual templates **rock**!
|
29628
|
+
|
29629
|
+
----==_mimepart_5d951336d8fac_19873fc65ac2e01081525
|
29630
|
+
Content-Type: text/html;
|
29631
|
+
charset=UTF-8
|
29632
|
+
Content-Transfer-Encoding: 7bit
|
29633
|
+
|
29634
|
+
<p>Dual templates <strong>rock</strong>!</p>
|
29635
|
+
|
29636
|
+
----==_mimepart_5d951336d8fac_19873fc65ac2e01081525--
|
29637
|
+
|
29638
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29639
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29640
|
+
----------------------------------------------------
|
29641
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
29642
|
+
----------------------------------------------------
|
29643
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
29644
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.7ms | Allocations: 281)
|
29645
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
29646
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.2ms | Allocations: 83)
|
29647
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 12.1ms
|
29648
|
+
Delivered mail 5d951336de129_19873fc65ac2e010818c3@rschneeman-ltm6.internal.salesforce.com.mail (1.8ms)
|
29649
|
+
Date: Wed, 02 Oct 2019 16:14:30 -0500
|
29650
|
+
From: from@example.com
|
29651
|
+
Reply-To: noreply@schneems.com
|
29652
|
+
To: foo@example.com
|
29653
|
+
Message-ID: <5d951336de129_19873fc65ac2e010818c3@rschneeman-ltm6.internal.salesforce.com.mail>
|
29654
|
+
Subject: hello world
|
29655
|
+
Mime-Version: 1.0
|
29656
|
+
Content-Type: multipart/alternative;
|
29657
|
+
boundary="--==_mimepart_5d951336db85f_19873fc65ac2e0108176c";
|
29658
|
+
charset=UTF-8
|
29659
|
+
Content-Transfer-Encoding: 7bit
|
29660
|
+
|
29661
|
+
|
29662
|
+
----==_mimepart_5d951336db85f_19873fc65ac2e0108176c
|
29663
|
+
Content-Type: text/plain;
|
29664
|
+
charset=UTF-8
|
29665
|
+
Content-Transfer-Encoding: 7bit
|
29666
|
+
|
29667
|
+
## Leading
|
29668
|
+
|
29669
|
+
----==_mimepart_5d951336db85f_19873fc65ac2e0108176c
|
29670
|
+
Content-Type: text/html;
|
29671
|
+
charset=UTF-8
|
29672
|
+
Content-Transfer-Encoding: 7bit
|
29673
|
+
|
29674
|
+
<h2 id="leading">Leading</h2>
|
29675
|
+
|
29676
|
+
----==_mimepart_5d951336db85f_19873fc65ac2e0108176c--
|
29677
|
+
|
29678
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29679
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29680
|
+
----------------------------------------------
|
29681
|
+
TemplateHandlerTest: test_.md_template_handler
|
29682
|
+
----------------------------------------------
|
29683
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 16:14:30 -0500
|
29684
|
+
Processing by HandlersController#show as HTML
|
29685
|
+
Parameters: {"id"=>"plain_markdown"}
|
29686
|
+
Rendering handlers/plain_markdown.html.md within layouts/application
|
29687
|
+
Rendered handlers/plain_markdown.html.md within layouts/application (Duration: 2.2ms | Allocations: 268)
|
29688
|
+
Completed 200 OK in 150ms (Views: 149.3ms | ActiveRecord: 0.0ms | Allocations: 285900)
|
29689
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29690
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
29691
|
+
---------------------------------------------------
|
29692
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
29693
|
+
---------------------------------------------------
|
29694
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
29695
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 2.6ms | Allocations: 621)
|
29696
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
29697
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.1ms | Allocations: 78)
|
29698
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 5.0ms
|
29699
|
+
Delivered mail 5d951337213da_19873fc65ac2e01082042@rschneeman-ltm6.internal.salesforce.com.mail (2.7ms)
|
29700
|
+
Date: Wed, 02 Oct 2019 16:14:31 -0500
|
29701
|
+
From: from@example.com
|
29702
|
+
Reply-To: noreply@schneems.com
|
29703
|
+
To: foo@example.com
|
29704
|
+
Message-ID: <5d951337213da_19873fc65ac2e01082042@rschneeman-ltm6.internal.salesforce.com.mail>
|
29705
|
+
Subject: hello world
|
29706
|
+
Mime-Version: 1.0
|
29707
|
+
Content-Type: multipart/alternative;
|
29708
|
+
boundary="--==_mimepart_5d95133720e6b_19873fc65ac2e010819f1";
|
29709
|
+
charset=UTF-8
|
29710
|
+
Content-Transfer-Encoding: 7bit
|
29711
|
+
|
29712
|
+
|
29713
|
+
----==_mimepart_5d95133720e6b_19873fc65ac2e010819f1
|
29714
|
+
Content-Type: text/plain;
|
29715
|
+
charset=UTF-8
|
29716
|
+
Content-Transfer-Encoding: 7bit
|
29717
|
+
|
29718
|
+
## Leading again
|
29719
|
+
|
29720
|
+
----==_mimepart_5d95133720e6b_19873fc65ac2e010819f1
|
29721
|
+
Content-Type: text/html;
|
29722
|
+
charset=UTF-8
|
29723
|
+
Content-Transfer-Encoding: 7bit
|
29724
|
+
|
29725
|
+
<pre><code> ## Leading again
|
29726
|
+
</code></pre>
|
29727
|
+
|
29728
|
+
----==_mimepart_5d95133720e6b_19873fc65ac2e010819f1--
|
29729
|
+
|
29730
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29731
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29732
|
+
-------------------------------------
|
29733
|
+
LayoutsTest: test_layout_renders_fine
|
29734
|
+
-------------------------------------
|
29735
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
29736
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.5ms | Allocations: 273)
|
29737
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
29738
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.1ms | Allocations: 77)
|
29739
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 3.6ms
|
29740
|
+
Delivered mail 5d95133723f72_19873fc65ac2e01082298@rschneeman-ltm6.internal.salesforce.com.mail (2.3ms)
|
29741
|
+
Date: Wed, 02 Oct 2019 16:14:31 -0500
|
29742
|
+
From: from@example.com
|
29743
|
+
Reply-To: noreply@schneems.com
|
29744
|
+
To: foo@example.com
|
29745
|
+
Message-ID: <5d95133723f72_19873fc65ac2e01082298@rschneeman-ltm6.internal.salesforce.com.mail>
|
29746
|
+
Subject: hello world
|
29747
|
+
Mime-Version: 1.0
|
29748
|
+
Content-Type: multipart/alternative;
|
29749
|
+
boundary="--==_mimepart_5d95133723938_19873fc65ac2e01082190";
|
29750
|
+
charset=UTF-8
|
29751
|
+
Content-Transfer-Encoding: 7bit
|
29752
|
+
|
29753
|
+
|
29754
|
+
----==_mimepart_5d95133723938_19873fc65ac2e01082190
|
29755
|
+
Content-Type: text/plain;
|
29756
|
+
charset=UTF-8
|
29757
|
+
Content-Transfer-Encoding: 7bit
|
29758
|
+
|
29759
|
+
TEXT## Welcome!
|
29760
|
+
|
29761
|
+
|
29762
|
+
----==_mimepart_5d95133723938_19873fc65ac2e01082190
|
29763
|
+
Content-Type: text/html;
|
29764
|
+
charset=UTF-8
|
29765
|
+
Content-Transfer-Encoding: 7bit
|
29766
|
+
|
29767
|
+
HTML<h2 id="welcome">Welcome!</h2>
|
29768
|
+
|
29769
|
+
----==_mimepart_5d95133723938_19873fc65ac2e01082190--
|
29770
|
+
|
29771
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29772
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29773
|
+
---------------------------
|
29774
|
+
LayoutsTest: test_no_layout
|
29775
|
+
---------------------------
|
29776
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29777
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.6ms | Allocations: 272)
|
29778
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29779
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.1ms | Allocations: 77)
|
29780
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 2.5ms
|
29781
|
+
Delivered mail 5d9513372554b_19873fc65ac2e010824e2@rschneeman-ltm6.internal.salesforce.com.mail (2.4ms)
|
29782
|
+
Date: Wed, 02 Oct 2019 16:14:31 -0500
|
29783
|
+
From: from@example.com
|
29784
|
+
Reply-To: noreply@schneems.com
|
29785
|
+
To: foo@example.com
|
29786
|
+
Message-ID: <5d9513372554b_19873fc65ac2e010824e2@rschneeman-ltm6.internal.salesforce.com.mail>
|
29787
|
+
Subject: hello world
|
29788
|
+
Mime-Version: 1.0
|
29789
|
+
Content-Type: multipart/alternative;
|
29790
|
+
boundary="--==_mimepart_5d951337250b9_19873fc65ac2e010823c8";
|
29791
|
+
charset=UTF-8
|
29792
|
+
Content-Transfer-Encoding: 7bit
|
29793
|
+
|
29794
|
+
|
29795
|
+
----==_mimepart_5d951337250b9_19873fc65ac2e010823c8
|
29796
|
+
Content-Type: text/plain;
|
29797
|
+
charset=UTF-8
|
29798
|
+
Content-Transfer-Encoding: 7bit
|
29799
|
+
|
29800
|
+
## Welcome!
|
29801
|
+
|
29802
|
+
----==_mimepart_5d951337250b9_19873fc65ac2e010823c8
|
29803
|
+
Content-Type: text/html;
|
29804
|
+
charset=UTF-8
|
29805
|
+
Content-Transfer-Encoding: 7bit
|
29806
|
+
|
29807
|
+
<h2 id="welcome">Welcome!</h2>
|
29808
|
+
|
29809
|
+
----==_mimepart_5d951337250b9_19873fc65ac2e010823c8--
|
29810
|
+
|
29811
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
29812
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29813
|
+
----------------------------------------------------------
|
29814
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
29815
|
+
----------------------------------------------------------
|
29816
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29817
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29818
|
+
---------------------------------------
|
29819
|
+
MarkdownEngineTest: test_can_set_engine
|
29820
|
+
---------------------------------------
|
29821
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29822
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29823
|
+
----------------------------------------------------------------
|
29824
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
29825
|
+
----------------------------------------------------------------
|
29826
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29827
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
29828
|
+
-------------------------------------------------------------
|
29829
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
29830
|
+
-------------------------------------------------------------
|
29831
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29832
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.3ms | Allocations: 195)
|
29833
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29834
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 5)
|
29835
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.6ms
|
29836
|
+
Delivered mail 5d95133727655_19873fc65ac2e0108265a@rschneeman-ltm6.internal.salesforce.com.mail (2.4ms)
|
29837
|
+
Date: Wed, 02 Oct 2019 16:14:31 -0500
|
29838
|
+
From: from@example.com
|
29839
|
+
Reply-To: noreply@schneems.com
|
29840
|
+
To: foo@example.com
|
29841
|
+
Message-ID: <5d95133727655_19873fc65ac2e0108265a@rschneeman-ltm6.internal.salesforce.com.mail>
|
29842
|
+
Subject: hello world
|
29843
|
+
Mime-Version: 1.0
|
29844
|
+
Content-Type: multipart/alternative;
|
29845
|
+
boundary="--==_mimepart_5d951337271fb_19873fc65ac2e0108259d";
|
29846
|
+
charset=UTF-8
|
29847
|
+
Content-Transfer-Encoding: 7bit
|
29848
|
+
|
29849
|
+
|
29850
|
+
----==_mimepart_5d951337271fb_19873fc65ac2e0108259d
|
29851
|
+
Content-Type: text/plain;
|
29852
|
+
charset=UTF-8
|
29853
|
+
Content-Transfer-Encoding: 7bit
|
29854
|
+
|
29855
|
+
## Welcome!
|
29856
|
+
|
29857
|
+
----==_mimepart_5d951337271fb_19873fc65ac2e0108259d
|
29858
|
+
Content-Type: text/html;
|
29859
|
+
charset=UTF-8
|
29860
|
+
Content-Transfer-Encoding: 7bit
|
29861
|
+
|
29862
|
+
<h2 id="welcome">Welcome!</h2>
|
29863
|
+
|
29864
|
+
----==_mimepart_5d951337271fb_19873fc65ac2e0108259d--
|
29865
|
+
|
29866
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29867
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.4ms | Allocations: 195)
|
29868
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29869
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 5)
|
29870
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.6ms
|
29871
|
+
Delivered mail 5d95133728760_19873fc65ac2e010828bf@rschneeman-ltm6.internal.salesforce.com.mail (1.7ms)
|
29872
|
+
Date: Wed, 02 Oct 2019 16:14:31 -0500
|
29873
|
+
From: from@example.com
|
29874
|
+
Reply-To: noreply@schneems.com
|
29875
|
+
To: foo@example.com
|
29876
|
+
Message-ID: <5d95133728760_19873fc65ac2e010828bf@rschneeman-ltm6.internal.salesforce.com.mail>
|
29877
|
+
Subject: hello world
|
29878
|
+
Mime-Version: 1.0
|
29879
|
+
Content-Type: multipart/alternative;
|
29880
|
+
boundary="--==_mimepart_5d95133728366_19873fc65ac2e010827c";
|
29881
|
+
charset=UTF-8
|
29882
|
+
Content-Transfer-Encoding: 7bit
|
29883
|
+
|
29884
|
+
|
29885
|
+
----==_mimepart_5d95133728366_19873fc65ac2e010827c
|
29886
|
+
Content-Type: text/plain;
|
29887
|
+
charset=UTF-8
|
29888
|
+
Content-Transfer-Encoding: 7bit
|
29889
|
+
|
29890
|
+
## Welcome!
|
29891
|
+
|
29892
|
+
----==_mimepart_5d95133728366_19873fc65ac2e010827c
|
29893
|
+
Content-Type: text/html;
|
29894
|
+
charset=UTF-8
|
29895
|
+
Content-Transfer-Encoding: 7bit
|
29896
|
+
|
29897
|
+
<h2 id="welcome">Welcome!</h2>
|
29898
|
+
|
29899
|
+
----==_mimepart_5d95133728366_19873fc65ac2e010827c--
|
29900
|
+
|
29901
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
29902
|
+
-------------------------------------
|
29903
|
+
LayoutsTest: test_layout_renders_fine
|
29904
|
+
-------------------------------------
|
29905
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
29906
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 45.2ms | Allocations: 18496)
|
29907
|
+
Rendering user_with_layout_mailer/welcome.md+erb within layouts/mail_layout
|
29908
|
+
Rendered user_with_layout_mailer/welcome.md+erb within layouts/mail_layout (Duration: 0.1ms | Allocations: 77)
|
29909
|
+
UserWithLayoutMailer#welcome: processed outbound mail in 54.2ms
|
29910
|
+
Delivered mail 5d95153d87901_1d8b3ff85f83c01022364@rschneeman-ltm6.internal.salesforce.com.mail (7.4ms)
|
29911
|
+
Date: Wed, 02 Oct 2019 16:23:09 -0500
|
29912
|
+
From: from@example.com
|
29913
|
+
Reply-To: noreply@schneems.com
|
29914
|
+
To: foo@example.com
|
29915
|
+
Message-ID: <5d95153d87901_1d8b3ff85f83c01022364@rschneeman-ltm6.internal.salesforce.com.mail>
|
29916
|
+
Subject: hello world
|
29917
|
+
Mime-Version: 1.0
|
29918
|
+
Content-Type: multipart/alternative;
|
29919
|
+
boundary="--==_mimepart_5d95153d8675c_1d8b3ff85f83c01022225";
|
29920
|
+
charset=UTF-8
|
29921
|
+
Content-Transfer-Encoding: 7bit
|
29922
|
+
|
29923
|
+
|
29924
|
+
----==_mimepart_5d95153d8675c_1d8b3ff85f83c01022225
|
29925
|
+
Content-Type: text/plain;
|
29926
|
+
charset=UTF-8
|
29927
|
+
Content-Transfer-Encoding: 7bit
|
29928
|
+
|
29929
|
+
TEXT## Welcome!
|
29930
|
+
|
29931
|
+
|
29932
|
+
----==_mimepart_5d95153d8675c_1d8b3ff85f83c01022225
|
29933
|
+
Content-Type: text/html;
|
29934
|
+
charset=UTF-8
|
29935
|
+
Content-Transfer-Encoding: 7bit
|
29936
|
+
|
29937
|
+
HTML<h2 id="welcome">Welcome!</h2>
|
29938
|
+
|
29939
|
+
----==_mimepart_5d95153d8675c_1d8b3ff85f83c01022225--
|
29940
|
+
|
29941
|
+
---------------------------
|
29942
|
+
LayoutsTest: test_no_layout
|
29943
|
+
---------------------------
|
29944
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29945
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.7ms | Allocations: 272)
|
29946
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29947
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.1ms | Allocations: 77)
|
29948
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 3.6ms
|
29949
|
+
Delivered mail 5d95153d8cc24_1d8b3ff85f83c01022536@rschneeman-ltm6.internal.salesforce.com.mail (12.4ms)
|
29950
|
+
Date: Wed, 02 Oct 2019 16:23:09 -0500
|
29951
|
+
From: from@example.com
|
29952
|
+
Reply-To: noreply@schneems.com
|
29953
|
+
To: foo@example.com
|
29954
|
+
Message-ID: <5d95153d8cc24_1d8b3ff85f83c01022536@rschneeman-ltm6.internal.salesforce.com.mail>
|
29955
|
+
Subject: hello world
|
29956
|
+
Mime-Version: 1.0
|
29957
|
+
Content-Type: multipart/alternative;
|
29958
|
+
boundary="--==_mimepart_5d95153d89f0f_1d8b3ff85f83c010224e3";
|
29959
|
+
charset=UTF-8
|
29960
|
+
Content-Transfer-Encoding: 7bit
|
29961
|
+
|
29962
|
+
|
29963
|
+
----==_mimepart_5d95153d89f0f_1d8b3ff85f83c010224e3
|
29964
|
+
Content-Type: text/plain;
|
29965
|
+
charset=UTF-8
|
29966
|
+
Content-Transfer-Encoding: 7bit
|
29967
|
+
|
29968
|
+
## Welcome!
|
29969
|
+
|
29970
|
+
----==_mimepart_5d95153d89f0f_1d8b3ff85f83c010224e3
|
29971
|
+
Content-Type: text/html;
|
29972
|
+
charset=UTF-8
|
29973
|
+
Content-Transfer-Encoding: 7bit
|
29974
|
+
|
29975
|
+
<h2 id="welcome">Welcome!</h2>
|
29976
|
+
|
29977
|
+
----==_mimepart_5d95153d89f0f_1d8b3ff85f83c010224e3--
|
29978
|
+
|
29979
|
+
----------------------------------------------------------------
|
29980
|
+
MarkdownEngineTest: test_custom_engine_works_in_multiple_threads
|
29981
|
+
----------------------------------------------------------------
|
29982
|
+
---------------------------------------
|
29983
|
+
MarkdownEngineTest: test_can_set_engine
|
29984
|
+
---------------------------------------
|
29985
|
+
----------------------------------------------------------
|
29986
|
+
MarkdownEngineTest: test_default_works_in_multiple_threads
|
29987
|
+
----------------------------------------------------------
|
29988
|
+
----------------------------------------------
|
29989
|
+
ExtActionMailerTest: test_monkeypatch_location
|
29990
|
+
----------------------------------------------
|
29991
|
+
-------------------------------------------------------------
|
29992
|
+
DoubleCompileTest: test_rendering_the_same_layout_twice_works
|
29993
|
+
-------------------------------------------------------------
|
29994
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29995
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.3ms | Allocations: 196)
|
29996
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
29997
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 5)
|
29998
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.6ms
|
29999
|
+
Delivered mail 5d95153d8e582_1d8b3ff85f83c010227d9@rschneeman-ltm6.internal.salesforce.com.mail (1.8ms)
|
30000
|
+
Date: Wed, 02 Oct 2019 16:23:09 -0500
|
30001
|
+
From: from@example.com
|
30002
|
+
Reply-To: noreply@schneems.com
|
30003
|
+
To: foo@example.com
|
30004
|
+
Message-ID: <5d95153d8e582_1d8b3ff85f83c010227d9@rschneeman-ltm6.internal.salesforce.com.mail>
|
30005
|
+
Subject: hello world
|
30006
|
+
Mime-Version: 1.0
|
30007
|
+
Content-Type: multipart/alternative;
|
30008
|
+
boundary="--==_mimepart_5d95153d8e158_1d8b3ff85f83c010226e6";
|
30009
|
+
charset=UTF-8
|
30010
|
+
Content-Transfer-Encoding: 7bit
|
30011
|
+
|
30012
|
+
|
30013
|
+
----==_mimepart_5d95153d8e158_1d8b3ff85f83c010226e6
|
30014
|
+
Content-Type: text/plain;
|
30015
|
+
charset=UTF-8
|
30016
|
+
Content-Transfer-Encoding: 7bit
|
30017
|
+
|
30018
|
+
## Welcome!
|
30019
|
+
|
30020
|
+
----==_mimepart_5d95153d8e158_1d8b3ff85f83c010226e6
|
30021
|
+
Content-Type: text/html;
|
30022
|
+
charset=UTF-8
|
30023
|
+
Content-Transfer-Encoding: 7bit
|
30024
|
+
|
30025
|
+
<h2 id="welcome">Welcome!</h2>
|
30026
|
+
|
30027
|
+
----==_mimepart_5d95153d8e158_1d8b3ff85f83c010226e6--
|
30028
|
+
|
30029
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
30030
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.3ms | Allocations: 195)
|
30031
|
+
Rendering user_no_layout_mailer/welcome.md+erb
|
30032
|
+
Rendered user_no_layout_mailer/welcome.md+erb (Duration: 0.0ms | Allocations: 5)
|
30033
|
+
UserNoLayoutMailer#welcome: processed outbound mail in 1.4ms
|
30034
|
+
Delivered mail 5d95153d8f344_1d8b3ff85f83c01022914@rschneeman-ltm6.internal.salesforce.com.mail (1.8ms)
|
30035
|
+
Date: Wed, 02 Oct 2019 16:23:09 -0500
|
30036
|
+
From: from@example.com
|
30037
|
+
Reply-To: noreply@schneems.com
|
30038
|
+
To: foo@example.com
|
30039
|
+
Message-ID: <5d95153d8f344_1d8b3ff85f83c01022914@rschneeman-ltm6.internal.salesforce.com.mail>
|
30040
|
+
Subject: hello world
|
30041
|
+
Mime-Version: 1.0
|
30042
|
+
Content-Type: multipart/alternative;
|
30043
|
+
boundary="--==_mimepart_5d95153d8ef2f_1d8b3ff85f83c010228ae";
|
30044
|
+
charset=UTF-8
|
30045
|
+
Content-Transfer-Encoding: 7bit
|
30046
|
+
|
30047
|
+
|
30048
|
+
----==_mimepart_5d95153d8ef2f_1d8b3ff85f83c010228ae
|
30049
|
+
Content-Type: text/plain;
|
30050
|
+
charset=UTF-8
|
30051
|
+
Content-Transfer-Encoding: 7bit
|
30052
|
+
|
30053
|
+
## Welcome!
|
30054
|
+
|
30055
|
+
----==_mimepart_5d95153d8ef2f_1d8b3ff85f83c010228ae
|
30056
|
+
Content-Type: text/html;
|
30057
|
+
charset=UTF-8
|
30058
|
+
Content-Transfer-Encoding: 7bit
|
30059
|
+
|
30060
|
+
<h2 id="welcome">Welcome!</h2>
|
30061
|
+
|
30062
|
+
----==_mimepart_5d95153d8ef2f_1d8b3ff85f83c010228ae--
|
30063
|
+
|
30064
|
+
----------------------------------------------
|
30065
|
+
TemplateHandlerTest: test_.md_template_handler
|
30066
|
+
----------------------------------------------
|
30067
|
+
Started GET "/handlers/plain_markdown" for 127.0.0.1 at 2019-10-02 16:23:09 -0500
|
30068
|
+
Processing by HandlersController#show as HTML
|
30069
|
+
Parameters: {"id"=>"plain_markdown"}
|
30070
|
+
Rendering handlers/plain_markdown.html.md within layouts/application
|
30071
|
+
Rendered handlers/plain_markdown.html.md within layouts/application (Duration: 0.8ms | Allocations: 262)
|
30072
|
+
Completed 200 OK in 3ms (Views: 2.7ms | Allocations: 1400)
|
30073
|
+
----------------------------------------------------
|
30074
|
+
TemplateHandlerTest: test_strip_whitespace_templates
|
30075
|
+
----------------------------------------------------
|
30076
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
30077
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.5ms | Allocations: 277)
|
30078
|
+
Rendering user_no_layout_mailer/leading_whitespace.md+erb
|
30079
|
+
Rendered user_no_layout_mailer/leading_whitespace.md+erb (Duration: 0.1ms | Allocations: 83)
|
30080
|
+
UserNoLayoutMailer#leading_whitespace: processed outbound mail in 2.8ms
|
30081
|
+
Delivered mail 5d95153d9b1d1_1d8b3ff85f83c0102315c@rschneeman-ltm6.internal.salesforce.com.mail (1.8ms)
|
30082
|
+
Date: Wed, 02 Oct 2019 16:23:09 -0500
|
30083
|
+
From: from@example.com
|
30084
|
+
Reply-To: noreply@schneems.com
|
30085
|
+
To: foo@example.com
|
30086
|
+
Message-ID: <5d95153d9b1d1_1d8b3ff85f83c0102315c@rschneeman-ltm6.internal.salesforce.com.mail>
|
30087
|
+
Subject: hello world
|
30088
|
+
Mime-Version: 1.0
|
30089
|
+
Content-Type: multipart/alternative;
|
30090
|
+
boundary="--==_mimepart_5d95153d9ad8d_1d8b3ff85f83c010230f7";
|
30091
|
+
charset=UTF-8
|
30092
|
+
Content-Transfer-Encoding: 7bit
|
30093
|
+
|
30094
|
+
|
30095
|
+
----==_mimepart_5d95153d9ad8d_1d8b3ff85f83c010230f7
|
30096
|
+
Content-Type: text/plain;
|
30097
|
+
charset=UTF-8
|
30098
|
+
Content-Transfer-Encoding: 7bit
|
30099
|
+
|
30100
|
+
## Leading
|
30101
|
+
|
30102
|
+
----==_mimepart_5d95153d9ad8d_1d8b3ff85f83c010230f7
|
30103
|
+
Content-Type: text/html;
|
30104
|
+
charset=UTF-8
|
30105
|
+
Content-Transfer-Encoding: 7bit
|
30106
|
+
|
30107
|
+
<h2 id="leading">Leading</h2>
|
30108
|
+
|
30109
|
+
----==_mimepart_5d95153d9ad8d_1d8b3ff85f83c010230f7--
|
30110
|
+
|
30111
|
+
----------------------------------------
|
30112
|
+
TemplateHandlerTest: test_dual_templates
|
30113
|
+
----------------------------------------
|
30114
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
30115
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.7ms | Allocations: 326)
|
30116
|
+
Rendering user_no_layout_mailer/contact.md.erb
|
30117
|
+
Rendered user_no_layout_mailer/contact.md.erb (Duration: 0.2ms | Allocations: 78)
|
30118
|
+
UserNoLayoutMailer#contact: processed outbound mail in 2.6ms
|
30119
|
+
Delivered mail 5d95153d9c5f9_1d8b3ff85f83c01023335@rschneeman-ltm6.internal.salesforce.com.mail (1.7ms)
|
30120
|
+
Date: Wed, 02 Oct 2019 16:23:09 -0500
|
30121
|
+
From: from@example.com
|
30122
|
+
Reply-To: noreply@schneems.com
|
30123
|
+
To: foo@example.com
|
30124
|
+
Message-ID: <5d95153d9c5f9_1d8b3ff85f83c01023335@rschneeman-ltm6.internal.salesforce.com.mail>
|
30125
|
+
Subject: hello world
|
30126
|
+
Mime-Version: 1.0
|
30127
|
+
Content-Type: multipart/alternative;
|
30128
|
+
boundary="--==_mimepart_5d95153d9c200_1d8b3ff85f83c010232c3";
|
30129
|
+
charset=UTF-8
|
30130
|
+
Content-Transfer-Encoding: 7bit
|
30131
|
+
|
30132
|
+
|
30133
|
+
----==_mimepart_5d95153d9c200_1d8b3ff85f83c010232c3
|
30134
|
+
Content-Type: text/plain;
|
30135
|
+
charset=UTF-8
|
30136
|
+
Content-Transfer-Encoding: 7bit
|
30137
|
+
|
30138
|
+
Dual templates **rock**!
|
30139
|
+
|
30140
|
+
----==_mimepart_5d95153d9c200_1d8b3ff85f83c010232c3
|
30141
|
+
Content-Type: text/html;
|
30142
|
+
charset=UTF-8
|
30143
|
+
Content-Transfer-Encoding: 7bit
|
30144
|
+
|
30145
|
+
<p>Dual templates <strong>rock</strong>!</p>
|
30146
|
+
|
30147
|
+
----==_mimepart_5d95153d9c200_1d8b3ff85f83c010232c3--
|
30148
|
+
|
30149
|
+
---------------------------------------------------
|
30150
|
+
TemplateHandlerTest: test_dont_whitespace_templates
|
30151
|
+
---------------------------------------------------
|
30152
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
30153
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 2.4ms | Allocations: 616)
|
30154
|
+
Rendering user_no_layout_mailer/leading_whitespace_again.md+erb
|
30155
|
+
Rendered user_no_layout_mailer/leading_whitespace_again.md+erb (Duration: 0.2ms | Allocations: 78)
|
30156
|
+
UserNoLayoutMailer#leading_whitespace_again: processed outbound mail in 5.3ms
|
30157
|
+
Delivered mail 5d95153d9e4cc_1d8b3ff85f83c010235b8@rschneeman-ltm6.internal.salesforce.com.mail (2.0ms)
|
30158
|
+
Date: Wed, 02 Oct 2019 16:23:09 -0500
|
30159
|
+
From: from@example.com
|
30160
|
+
Reply-To: noreply@schneems.com
|
30161
|
+
To: foo@example.com
|
30162
|
+
Message-ID: <5d95153d9e4cc_1d8b3ff85f83c010235b8@rschneeman-ltm6.internal.salesforce.com.mail>
|
30163
|
+
Subject: hello world
|
30164
|
+
Mime-Version: 1.0
|
30165
|
+
Content-Type: multipart/alternative;
|
30166
|
+
boundary="--==_mimepart_5d95153d9e01a_1d8b3ff85f83c01023436";
|
30167
|
+
charset=UTF-8
|
30168
|
+
Content-Transfer-Encoding: 7bit
|
30169
|
+
|
30170
|
+
|
30171
|
+
----==_mimepart_5d95153d9e01a_1d8b3ff85f83c01023436
|
30172
|
+
Content-Type: text/plain;
|
30173
|
+
charset=UTF-8
|
30174
|
+
Content-Transfer-Encoding: 7bit
|
30175
|
+
|
30176
|
+
## Leading again
|
30177
|
+
|
30178
|
+
----==_mimepart_5d95153d9e01a_1d8b3ff85f83c01023436
|
30179
|
+
Content-Type: text/html;
|
30180
|
+
charset=UTF-8
|
30181
|
+
Content-Transfer-Encoding: 7bit
|
30182
|
+
|
30183
|
+
<pre><code> ## Leading again
|
30184
|
+
</code></pre>
|
30185
|
+
|
30186
|
+
----==_mimepart_5d95153d9e01a_1d8b3ff85f83c01023436--
|
30187
|
+
|
30188
|
+
--------------------------------------------------
|
30189
|
+
MarkdownEngineTest: test_handles_code_fences_(GFM)
|
30190
|
+
--------------------------------------------------
|
30191
|
+
--------------------------------------------------
|
30192
|
+
MarkdownEngineTest: test_handles_code_fences_(GFM)
|
30193
|
+
--------------------------------------------------
|
30194
|
+
--------------------------------------------------
|
30195
|
+
MarkdownEngineTest: test_handles_code_fences_(GFM)
|
30196
|
+
--------------------------------------------------
|