1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fixed that has_many :through associations should render as collections too (closes #9051) [mathie/danger]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8130 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2007-11-12 15:02:12 +00:00
parent a406643b95
commit 55b6697493
7 changed files with 21 additions and 3 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Fixed that has_many :through associations should render as collections too #9051 [mathie/danger]
* Added :mouseover short-cut to AssetTagHelper#image_tag for doing easy image swaps #6893 [joost]
* Fixed handling of non-domain hosts #9479 [purp]

View file

@ -119,7 +119,7 @@ module ActionView
else
render("#{path}/_#{partial_name}", local_assigns)
end
when Array, ActiveRecord::Associations::AssociationCollection
when Array, ActiveRecord::Associations::AssociationCollection, ActiveRecord::Associations::HasManyThroughAssociation
if partial_path.any?
path = ActionController::RecordIdentifier.partial_path(partial_path.first)
collection = partial_path

View file

@ -14,6 +14,11 @@ class RenderPartialWithRecordIdentificationTest < ActiveRecordTestCase
render :partial => @topic.replies
end
def render_with_has_many_through_association
@developer = Developer.find(:first)
render :partial => @developer.topics
end
def render_with_belongs_to_association
@reply = Reply.find(1)
render :partial => @reply.topic
@ -47,6 +52,11 @@ class RenderPartialWithRecordIdentificationTest < ActiveRecordTestCase
assert_template 'replies/_reply'
end
def test_rendering_partial_with_has_many_association
get :render_with_has_many_through_association
assert_template 'topics/_topic'
end
def test_rendering_partial_with_belongs_to_association
get :render_with_belongs_to_association
assert_template 'topics/_topic'

View file

@ -9,7 +9,8 @@ CREATE TABLE 'replies' (
'content' text,
'created_at' datetime,
'updated_at' datetime,
'topic_id' integer
'topic_id' integer,
'developer_id' integer
);
CREATE TABLE 'topics' (

View file

@ -1,5 +1,7 @@
class Developer < ActiveRecord::Base
has_and_belongs_to_many :projects
has_many :replies
has_many :topics, :through => :replies
end
class DeVeLoPeR < ActiveRecord::Base

View file

@ -1,6 +1,7 @@
witty_retort:
id: 1
topic_id: 1
developer_id: 1
content: Birdman is better!
created_at: <%= 6.hours.ago.to_s(:db) %>
updated_at: nil
@ -8,6 +9,7 @@ witty_retort:
another:
id: 2
topic_id: 2
developer_id: 1
content: Nuh uh!
created_at: <%= 1.hour.ago.to_s(:db) %>
updated_at: nil

View file

@ -1,5 +1,6 @@
class Reply < ActiveRecord::Base
belongs_to :topic, :include => [:replies]
belongs_to :developer
validates_presence_of :content
end