aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorSandeep <sandeep.ravichandran@sourcebits.com>2012-08-21 21:58:05 +0530
committerSandeep <sandeep.ravichandran@sourcebits.com>2012-08-21 21:59:05 +0530
commit99322266b8e80118a3912083c9c53ec03ff73eb6 (patch)
tree032c735b00ed1c2172cc7a1a97b7a5304fbfa9a1 /actionpack/test/template
parent8c600e45cd78883680986c18ad400f859f6978b2 (diff)
downloadrails-99322266b8e80118a3912083c9c53ec03ff73eb6.tar.gz
rails-99322266b8e80118a3912083c9c53ec03ff73eb6.tar.bz2
rails-99322266b8e80118a3912083c9c53ec03ff73eb6.zip
option_tags coerced to "" instead of nil
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/form_tag_helper_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/actionpack/test/template/form_tag_helper_test.rb b/actionpack/test/template/form_tag_helper_test.rb
index 81ba92f2e6..3c66a29754 100644
--- a/actionpack/test/template/form_tag_helper_test.rb
+++ b/actionpack/test/template/form_tag_helper_test.rb
@@ -225,6 +225,18 @@ class FormTagHelperTest < ActionView::TestCase
assert_dom_equal expected, actual
end
+ def test_select_tag_with_nil_option_tags_and_include_blank
+ actual = select_tag "places", nil, :include_blank => true
+ expected = %(<select id="places" name="places"><option value=""></option></select>)
+ assert_dom_equal expected, actual
+ end
+
+ def test_select_tag_with_nil_option_tags_and_prompt
+ actual = select_tag "places", nil, :prompt => "string"
+ expected = %(<select id="places" name="places"><option value="">string</option></select>)
+ assert_dom_equal expected, actual
+ end
+
def test_text_area_tag_size_string
actual = text_area_tag "body", "hello world", "size" => "20x40"
expected = %(<textarea cols="20" id="body" name="body" rows="40">\nhello world</textarea>)