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

Added test for has_one partial rendering (keeran) [#43 state:resolved]

This commit is contained in:
David Heinemeier Hansson 2008-04-30 14:59:24 -05:00
parent a3da293b33
commit 56861af733
3 changed files with 20 additions and 1 deletions

View file

@ -1,7 +1,7 @@
require 'active_record_unit'
class RenderPartialWithRecordIdentificationTest < ActiveRecordTestCase
fixtures :developers, :projects, :developers_projects, :topics, :replies
fixtures :developers, :projects, :developers_projects, :topics, :replies, :companies, :mascots
class RenderPartialWithRecordIdentificationController < ActionController::Base
def render_with_has_many_and_belongs_to_association
@ -23,6 +23,11 @@ class RenderPartialWithRecordIdentificationTest < ActiveRecordTestCase
render :partial => @developer.topics
end
def render_with_has_one_association
@company = Company.find(1)
render :partial => @company.mascot
end
def render_with_belongs_to_association
@reply = Reply.find(1)
render :partial => @reply.topic
@ -71,4 +76,11 @@ class RenderPartialWithRecordIdentificationTest < ActiveRecordTestCase
get :render_with_record_collection
assert_template 'developers/_developer'
end
def test_rendering_partial_with_has_one_association
mascot = Company.find(1).mascot
get :render_with_has_one_association
assert_template 'mascots/_mascot'
assert_equal mascot.name, @response.body
end
end

View file

@ -1,4 +1,5 @@
class Company < ActiveRecord::Base
has_one :mascot
attr_protected :rating
set_sequence_name :companies_nonstd_seq

View file

@ -41,3 +41,9 @@ CREATE TABLE 'developers_projects' (
'joined_on' DATE DEFAULT NULL,
'access_level' INTEGER DEFAULT 1
);
CREATE TABLE 'mascots' (
'id' INTEGER PRIMARY KEY NOT NULL,
'company_id' INTEGER NOT NULL,
'name' TEXT DEFAULT NULL
);