From 85a5deacdc1f0d1a56a07429a03dfa0cf8cc7f78 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 12 Dec 2004 11:17:25 +0000 Subject: Use lower-case post instead of POST as form method for XHTML compliance #290 [Scott Baron] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@113 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/template/active_record_helper_test.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'actionpack/test/template') diff --git a/actionpack/test/template/active_record_helper_test.rb b/actionpack/test/template/active_record_helper_test.rb index 12ab78796b..9cc0f58d0a 100644 --- a/actionpack/test/template/active_record_helper_test.rb +++ b/actionpack/test/template/active_record_helper_test.rb @@ -71,7 +71,7 @@ class ActiveRecordHelperTest < Test::Unit::TestCase def test_form_with_string assert_equal( - "


\n


", + "


\n


", form("post") ) end @@ -80,7 +80,7 @@ class ActiveRecordHelperTest < Test::Unit::TestCase def Post.content_columns() [ Column.new(:date, "written_on", "Written on") ] end assert_equal( - "


\n\n\n

", + "


\n\n\n

", form("post") ) end @@ -90,7 +90,7 @@ class ActiveRecordHelperTest < Test::Unit::TestCase @post.written_on = Time.gm(2004, 6, 15, 16, 30) assert_equal( - "


\n\n\n — \n : \n

", + "


\n\n\n — \n : \n

", form("post") ) end @@ -99,4 +99,4 @@ class ActiveRecordHelperTest < Test::Unit::TestCase assert_equal "

1 error prohibited this post from being saved

There were problems with the following fields:

", error_messages_for("post") assert_equal "

1 error prohibited this post from being saved

There were problems with the following fields:

", error_messages_for("post", :class => "errorDeathByClass", :id => "errorDeathById", :header_tag => "h1") end -end \ No newline at end of file +end -- cgit v1.2.3