aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/form_tag_helper_test.rb
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2010-09-25 08:35:15 +0800
committerJosé Valim <jose.valim@gmail.com>2010-09-26 02:13:46 +0800
commitdb57e92784f83d62a067282a131d7b09b44c3032 (patch)
tree187937bfd93596984e6239c470769bda90a27936 /actionpack/test/template/form_tag_helper_test.rb
parenteb8a24a375a25d43b10459af2fef7641d0746738 (diff)
downloadrails-db57e92784f83d62a067282a131d7b09b44c3032.tar.gz
rails-db57e92784f83d62a067282a131d7b09b44c3032.tar.bz2
rails-db57e92784f83d62a067282a131d7b09b44c3032.zip
Select tags with array options are deprecated, removing
Diffstat (limited to 'actionpack/test/template/form_tag_helper_test.rb')
-rw-r--r--actionpack/test/template/form_tag_helper_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/actionpack/test/template/form_tag_helper_test.rb b/actionpack/test/template/form_tag_helper_test.rb
index 532f086d21..8c8e87ae9f 100644
--- a/actionpack/test/template/form_tag_helper_test.rb
+++ b/actionpack/test/template/form_tag_helper_test.rb
@@ -201,12 +201,6 @@ class FormTagHelperTest < ActionView::TestCase
assert_dom_equal expected, actual
end
- def test_select_tag_with_array_options
- assert_deprecated /array/ do
- select_tag "people", ["<option>david</option>"]
- end
- 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>)