1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/spec/acceptance/attributes_from_instance_spec.rb
Joshua Clayton d918c1ddae Allow methods to be called from the instance in factory girl attributes
This fixes a regression introduced with the introduction of the
anonymous class.

Closes #264
2012-01-07 22:13:38 -05:00

53 lines
1.4 KiB
Ruby

require "spec_helper"
describe "calling methods on the model instance" do
before do
define_model('User', :age => :integer, :age_copy => :integer) do
def age
read_attribute(:age) || 18
end
end
FactoryGirl.define do
factory :user do
age_copy { age }
end
end
end
context "without the attribute being overridden" do
it "returns the correct value from the instance" do
FactoryGirl.build(:user).age_copy.should == 18
end
it "returns nil during attributes_for" do
FactoryGirl.attributes_for(:user)[:age_copy].should be_nil
end
it "doesn't instantiate a record with attributes_for" do
User.stubs(:new)
FactoryGirl.attributes_for(:user)
User.should have_received(:new).never
end
end
context "with the attribute being overridden" do
it "uses the overridden value" do
FactoryGirl.build(:user, :age_copy => nil).age_copy.should be_nil
end
it "uses the overridden value during attributes_for" do
FactoryGirl.attributes_for(:user, :age_copy => 25)[:age_copy].should == 25
end
end
context "with the referenced attribute being overridden" do
it "uses the overridden value" do
FactoryGirl.build(:user, :age => nil).age_copy.should be_nil
end
it "uses the overridden value during attributes_for" do
FactoryGirl.attributes_for(:user, :age => 25)[:age_copy].should == 25
end
end
end