Commit 558a951e authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixes unhandled case in json builder.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4463 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 37ed0255
......@@ -56,7 +56,11 @@ module Redmine
if @struct.last.is_a?(Array)
@struct.last << ret
else
@struct.last[sym] = ret
if @struct.last.has_key?(sym) && @struct.last[sym].is_a?(Hash)
@struct.last[sym].merge! ret
else
@struct.last[sym] = ret
end
end
end
end
......
......@@ -35,6 +35,13 @@ class Redmine::Views::Builders::JsonTest < HelperTestCase
b.birth :city => 'London', :country => 'UK'
end
end
assert_json_output({'person' => {'id' => 1, 'name' => 'Ryan', 'birth' => {'city' => 'London', 'country' => 'UK'}}}) do |b|
b.person :id => 1 do
b.name 'Ryan'
b.birth :city => 'London', :country => 'UK'
end
end
end
def test_array
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment