From c5d54be746473ce5610e5e6de51f6b9d2495c935 Mon Sep 17 00:00:00 2001 From: Daniel Lopes Date: Tue, 3 May 2011 11:39:27 -0300 Subject: fix select_tag to have the same behavior of select --- actionpack/test/template/form_tag_helper_test.rb | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'actionpack/test') diff --git a/actionpack/test/template/form_tag_helper_test.rb b/actionpack/test/template/form_tag_helper_test.rb index 656fa0356b..f95308b847 100644 --- a/actionpack/test/template/form_tag_helper_test.rb +++ b/actionpack/test/template/form_tag_helper_test.rb @@ -200,12 +200,18 @@ class FormTagHelperTest < ActionView::TestCase assert_dom_equal expected, actual end - def test_select_tag_with_include_blank_with_string - actual = select_tag "places", "".html_safe, :include_blank => "string" + def test_select_tag_with_prompt + actual = select_tag "places", "".html_safe, :prompt => "string" expected = %() assert_dom_equal expected, actual end + def test_select_tag_with_prompt_and_include_blank + actual = select_tag "places", "".html_safe, :prompt => "string", :include_blank => true + expected = %() + assert_dom_equal expected, actual + end + def test_text_area_tag_size_string actual = text_area_tag "body", "hello world", "size" => "20x40" expected = %() -- cgit v1.2.3