diff options
author | Mikel Lindsaar <raasdnil@gmail.com> | 2010-01-29 13:00:12 +0100 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-01-29 17:51:05 +0100 |
commit | 296007744525638b142501efee57faf6ac4be20f (patch) | |
tree | a7aafafe17b666592cb85a6420ee26c454e29583 /actionmailer/test/fixtures/layouts | |
parent | 1024c11f3c6218dfdbe8ac4be41671248c21591c (diff) | |
download | rails-296007744525638b142501efee57faf6ac4be20f.tar.gz rails-296007744525638b142501efee57faf6ac4be20f.tar.bz2 rails-296007744525638b142501efee57faf6ac4be20f.zip |
Add a failing test case for render :layout
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'actionmailer/test/fixtures/layouts')
-rw-r--r-- | actionmailer/test/fixtures/layouts/different_layout.html.erb | 1 | ||||
-rw-r--r-- | actionmailer/test/fixtures/layouts/different_layout.text.erb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/actionmailer/test/fixtures/layouts/different_layout.html.erb b/actionmailer/test/fixtures/layouts/different_layout.html.erb new file mode 100644 index 0000000000..99eb026ae1 --- /dev/null +++ b/actionmailer/test/fixtures/layouts/different_layout.html.erb @@ -0,0 +1 @@ +HTML -- <%= yield %>
\ No newline at end of file diff --git a/actionmailer/test/fixtures/layouts/different_layout.text.erb b/actionmailer/test/fixtures/layouts/different_layout.text.erb new file mode 100644 index 0000000000..b93467b7ae --- /dev/null +++ b/actionmailer/test/fixtures/layouts/different_layout.text.erb @@ -0,0 +1 @@ +PLAIN -- <%= yield %>
\ No newline at end of file |