aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_helper_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-01-05 04:09:38 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-01-05 04:09:38 +0000
commit73499158df05ed68fb9cf2679286a603db91f1ef (patch)
treee4bb59545ef2636a204337d39c92031430c24bef /actionpack/test/template/form_helper_test.rb
parentfbe05067be9d5a575b29d62a1a1bc490663c5e17 (diff)
downloadrails-73499158df05ed68fb9cf2679286a603db91f1ef.tar.gz
rails-73499158df05ed68fb9cf2679286a603db91f1ef.tar.bz2
rails-73499158df05ed68fb9cf2679286a603db91f1ef.zip
Fixed that webrick would strip leading newlines and hang connection (closes #4156) [psross]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5847 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template/form_helper_test.rb')
-rw-r--r--actionpack/test/template/form_helper_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index a7ceb6b30f..69aef4e5f1 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -64,6 +64,11 @@ class FormHelperTest < Test::Unit::TestCase
assert_dom_equal expected, text_field("post", "title", :size => 35)
end
+ def test_text_field_with_prefix
+ expected = '<input id="book_post_title" name="book[post][title]" size="35" type="text" value="Hello World" />'
+ assert_dom_equal expected, text_field("post", "title", :size => 35, :prefix => :book)
+ end
+
def test_text_field_assuming_size
expected = '<input id="post_title" maxlength="35" name="post[title]" size="35" type="text" value="Hello World" />'
assert_dom_equal expected, text_field("post", "title", "maxlength" => 35)