From ba2619f53911d5b56b76ab45af882caa7334e3cf Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Wed, 8 Feb 2006 05:13:21 +0000 Subject: Don't interpret the :value option on text_area as an html attribute. Set the text_area's value. Closes #3752. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3550 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/template/form_helper_test.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'actionpack/test') diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb index a922584370..83d50aae7a 100644 --- a/actionpack/test/template/form_helper_test.rb +++ b/actionpack/test/template/form_helper_test.rb @@ -126,7 +126,14 @@ class FormHelperTest < Test::Unit::TestCase text_area("post", "body") ) end - + + def test_text_area_with_alternate_value + assert_dom_equal( + '', + text_area("post", "body", :value => 'Testing alternate values.') + ) + end + def test_date_selects assert_dom_equal( '', -- cgit v1.2.3