From 9f7190187cd755345557009a0b0ca9eec679b415 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Tue, 26 Jan 2010 09:27:21 -0600 Subject: Failing AM test for nested layouts --- actionmailer/test/fixtures/nested/layouts/spam.html.erb | 1 + actionmailer/test/fixtures/nested_layout_mailer/signup.html.erb | 1 + 2 files changed, 2 insertions(+) create mode 100644 actionmailer/test/fixtures/nested/layouts/spam.html.erb create mode 100644 actionmailer/test/fixtures/nested_layout_mailer/signup.html.erb (limited to 'actionmailer/test/fixtures') diff --git a/actionmailer/test/fixtures/nested/layouts/spam.html.erb b/actionmailer/test/fixtures/nested/layouts/spam.html.erb new file mode 100644 index 0000000000..7a24b19b7f --- /dev/null +++ b/actionmailer/test/fixtures/nested/layouts/spam.html.erb @@ -0,0 +1 @@ +Nested Spammer layout <%= yield %> \ No newline at end of file diff --git a/actionmailer/test/fixtures/nested_layout_mailer/signup.html.erb b/actionmailer/test/fixtures/nested_layout_mailer/signup.html.erb new file mode 100644 index 0000000000..4789e888c6 --- /dev/null +++ b/actionmailer/test/fixtures/nested_layout_mailer/signup.html.erb @@ -0,0 +1 @@ +We do not spam \ No newline at end of file -- cgit v1.2.3 From 31b538df6457ba723668afc62e85056e3bca9413 Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Tue, 26 Jan 2010 09:37:20 -0600 Subject: Failing AM test for legacy multipart alternative rendering --- actionmailer/test/fixtures/test_mailer/multipart_alternative.html.erb | 1 + actionmailer/test/fixtures/test_mailer/multipart_alternative.plain.erb | 1 + 2 files changed, 2 insertions(+) create mode 100644 actionmailer/test/fixtures/test_mailer/multipart_alternative.html.erb create mode 100644 actionmailer/test/fixtures/test_mailer/multipart_alternative.plain.erb (limited to 'actionmailer/test/fixtures') diff --git a/actionmailer/test/fixtures/test_mailer/multipart_alternative.html.erb b/actionmailer/test/fixtures/test_mailer/multipart_alternative.html.erb new file mode 100644 index 0000000000..73ea14f82f --- /dev/null +++ b/actionmailer/test/fixtures/test_mailer/multipart_alternative.html.erb @@ -0,0 +1 @@ +foo <%= @foo %> \ No newline at end of file diff --git a/actionmailer/test/fixtures/test_mailer/multipart_alternative.plain.erb b/actionmailer/test/fixtures/test_mailer/multipart_alternative.plain.erb new file mode 100644 index 0000000000..779fe4c1ea --- /dev/null +++ b/actionmailer/test/fixtures/test_mailer/multipart_alternative.plain.erb @@ -0,0 +1 @@ +foo: <%= @foo %> \ No newline at end of file -- cgit v1.2.3