diff options
author | Daniel Lopes <danielvlopes@gmail.com> | 2011-05-03 11:39:27 -0300 |
---|---|---|
committer | Daniel Lopes <danielvlopes@gmail.com> | 2011-05-03 11:39:27 -0300 |
commit | c5d54be746473ce5610e5e6de51f6b9d2495c935 (patch) | |
tree | a218804ce42b3cd152eaa3f7b2db9f6e9ffbb5da /actionpack/test/template | |
parent | 7ae3b82ceb83827a6f1c22ee6a6dbcfa0c44d13b (diff) | |
download | rails-c5d54be746473ce5610e5e6de51f6b9d2495c935.tar.gz rails-c5d54be746473ce5610e5e6de51f6b9d2495c935.tar.bz2 rails-c5d54be746473ce5610e5e6de51f6b9d2495c935.zip |
fix select_tag to have the same behavior of select
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/form_tag_helper_test.rb | 10 |
1 files changed, 8 insertions, 2 deletions
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", "<option>Home</option><option>Work</option><option>Pub</option>".html_safe, :include_blank => "string" + def test_select_tag_with_prompt + actual = select_tag "places", "<option>Home</option><option>Work</option><option>Pub</option>".html_safe, :prompt => "string" expected = %(<select id="places" name="places"><option value="">string</option><option>Home</option><option>Work</option><option>Pub</option></select>) assert_dom_equal expected, actual end + def test_select_tag_with_prompt_and_include_blank + actual = select_tag "places", "<option>Home</option><option>Work</option><option>Pub</option>".html_safe, :prompt => "string", :include_blank => true + expected = %(<select name="places" id="places"><option value="">string</option><option value=""></option><option>Home</option><option>Work</option><option>Pub</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">hello world</textarea>) |