From 94fa0ed053a92b4dc48501d7dc7e7ebcec7e1ca6 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 19 Feb 2007 02:10:19 +0000 Subject: Its ETag not Etag git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6168 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/render_test.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'actionpack/test/controller/render_test.rb') diff --git a/actionpack/test/controller/render_test.rb b/actionpack/test/controller/render_test.rb index 495e48a34a..8c2b57084c 100644 --- a/actionpack/test/controller/render_test.rb +++ b/actionpack/test/controller/render_test.rb @@ -292,7 +292,7 @@ class RenderTest < Test::Unit::TestCase def test_render_200_should_set_etag get :render_hello_world_from_variable - assert_equal etag_for("hello david"), @response.headers['Etag'] + assert_equal etag_for("hello david"), @response.headers['ETag'] end def test_render_against_etag_request_should_304_when_match @@ -312,7 +312,7 @@ class RenderTest < Test::Unit::TestCase def test_render_with_etag get :render_hello_world_from_variable expected_etag = etag_for('hello david') - assert_equal expected_etag, @response.headers['Etag'] + assert_equal expected_etag, @response.headers['ETag'] @request.headers["HTTP_IF_NONE_MATCH"] = expected_etag get :render_hello_world_from_variable @@ -325,20 +325,20 @@ class RenderTest < Test::Unit::TestCase def render_with_404_shouldnt_have_etag get :render_custom_code - assert_nil @response.headers['Etag'] + assert_nil @response.headers['ETag'] end def test_etag_should_not_be_changed_when_already_set expected_etag = etag_for("hello somewhere else") - @response.headers["Etag"] = expected_etag + @response.headers["ETag"] = expected_etag get :render_hello_world_from_variable - assert_equal expected_etag, @response.headers['Etag'] + assert_equal expected_etag, @response.headers['ETag'] end def test_etag_should_govern_renders_with_layouts_too get :builder_layout_test assert_equal "\n\n

Hello

\n

This is grand!

\n\n
\n", @response.body - assert_equal etag_for("\n\n

Hello

\n

This is grand!

\n\n
\n"), @response.headers['Etag'] + assert_equal etag_for("\n\n

Hello

\n

This is grand!

\n\n
\n"), @response.headers['ETag'] end -- cgit v1.2.3