aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Carrion <dc.rec1@gmail.com>2011-03-06 00:47:15 -0300
committerAndrew White <andyw@pixeltrix.co.uk>2011-03-06 05:18:56 +0000
commitdff73dec223c5d4ffe1178e0e15399f78d962e76 (patch)
tree3f1f6003164d3e551eca74d0980dcb7dd885cc92
parent74818a35432b40fef16fe74f248ea75d35405324 (diff)
downloadrails-dff73dec223c5d4ffe1178e0e15399f78d962e76.tar.gz
rails-dff73dec223c5d4ffe1178e0e15399f78d962e76.tar.bz2
rails-dff73dec223c5d4ffe1178e0e15399f78d962e76.zip
added failing test for fields_for with a record object that inherits from Hash
Signed-off-by: Andrew White <andyw@pixeltrix.co.uk>
-rw-r--r--actionpack/test/template/form_options_helper_test.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/actionpack/test/template/form_options_helper_test.rb b/actionpack/test/template/form_options_helper_test.rb
index 69b1d4ff7b..93ff7ba0fd 100644
--- a/actionpack/test/template/form_options_helper_test.rb
+++ b/actionpack/test/template/form_options_helper_test.rb
@@ -1,6 +1,12 @@
require 'abstract_unit'
require 'tzinfo'
+class Map < Hash
+ def category
+ "<mus>"
+ end
+end
+
TZInfo::Timezone.cattr_reader :loaded_zones
class FormOptionsHelperTest < ActionView::TestCase
@@ -394,6 +400,19 @@ class FormOptionsHelperTest < ActionView::TestCase
)
end
+ def test_fields_for_with_record_inherited_from_hash
+ map = Map.new
+
+ output_buffer = fields_for :map, map do |f|
+ concat f.select(:category, %w( abe <mus> hest))
+ end
+
+ assert_dom_equal(
+ "<select id=\"map_category\" name=\"map[category]\"><option value=\"abe\">abe</option>\n<option value=\"&lt;mus&gt;\" selected=\"selected\">&lt;mus&gt;</option>\n<option value=\"hest\">hest</option></select>",
+ output_buffer
+ )
+ end
+
def test_select_under_fields_for_with_index
@post = Post.new
@post.category = "<mus>"