From e5b84fd72358deddd29c515aacab7edf2643908e Mon Sep 17 00:00:00 2001 From: "Timothy N. Tsvetkov" Date: Wed, 24 Nov 2010 00:17:05 +0300 Subject: ActionController::Base.helpers.sanitize ignores case in protocol [#6044 state:committed] Signed-off-by: Santiago Pastorino --- actionpack/test/fixtures/layout_tests/layouts/symlinked | 1 - 1 file changed, 1 deletion(-) delete mode 120000 actionpack/test/fixtures/layout_tests/layouts/symlinked (limited to 'actionpack/test/fixtures') diff --git a/actionpack/test/fixtures/layout_tests/layouts/symlinked b/actionpack/test/fixtures/layout_tests/layouts/symlinked deleted file mode 120000 index 0ddc1154ab..0000000000 --- a/actionpack/test/fixtures/layout_tests/layouts/symlinked +++ /dev/null @@ -1 +0,0 @@ -../../symlink_parent \ No newline at end of file -- cgit v1.2.3 From 27ea0481bb68b2a09ade4f442beea3eac812b72c Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Fri, 31 Dec 2010 14:22:27 +0100 Subject: Recreate symlink in layouts for tests --- actionpack/test/fixtures/layout_tests/layouts/symlinked | 1 + 1 file changed, 1 insertion(+) create mode 120000 actionpack/test/fixtures/layout_tests/layouts/symlinked (limited to 'actionpack/test/fixtures') diff --git a/actionpack/test/fixtures/layout_tests/layouts/symlinked b/actionpack/test/fixtures/layout_tests/layouts/symlinked new file mode 120000 index 0000000000..0ddc1154ab --- /dev/null +++ b/actionpack/test/fixtures/layout_tests/layouts/symlinked @@ -0,0 +1 @@ +../../symlink_parent \ No newline at end of file -- cgit v1.2.3 From c1c6f29214d3c280f5d1d4abb49d0b90424fcbd7 Mon Sep 17 00:00:00 2001 From: Anton Astashov Date: Thu, 3 Feb 2011 19:09:21 +0700 Subject: Add a test for 'render :layout' To make sure it will show block contents if it is placed after 'render :partial' [#5557 state:resolved] Signed-off-by: Santiago Pastorino --- actionpack/test/fixtures/test/_layout_with_partial_and_yield.html.erb | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 actionpack/test/fixtures/test/_layout_with_partial_and_yield.html.erb (limited to 'actionpack/test/fixtures') diff --git a/actionpack/test/fixtures/test/_layout_with_partial_and_yield.html.erb b/actionpack/test/fixtures/test/_layout_with_partial_and_yield.html.erb new file mode 100644 index 0000000000..5db0822f07 --- /dev/null +++ b/actionpack/test/fixtures/test/_layout_with_partial_and_yield.html.erb @@ -0,0 +1,4 @@ +Before +<%= render :partial => "test/partial.html.erb" %> +<%= yield %> +After -- cgit v1.2.3