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/build_spec.rb
Ryan Ringler 69b72e66de Add use_parent_strategy option for building associations (#961)
This change means that:

1. The option is turned on, and
2. A Post has a User (for example), and
3. We build an association
4. Then the User is built too.

With the flag off, the User would be created, which matches current
behaviour.

See: https://github.com/thoughtbot/factory_girl/pull/749
2016-12-16 05:28:09 -05:00

106 lines
2.2 KiB
Ruby

require 'spec_helper'
describe "a built instance" do
include FactoryGirl::Syntax::Methods
before do
define_model('User')
define_model('Post', user_id: :integer) do
belongs_to :user
end
FactoryGirl.define do
factory :user
factory :post do
user
end
end
end
subject { build(:post) }
it { should be_new_record }
context "when the :use_parent_strategy config option has not been set" do
before { FactoryGirl.use_parent_strategy = nil }
it "assigns and saves associations" do
expect(subject.user).to be_kind_of(User)
expect(subject.user).not_to be_new_record
end
end
context "when the :use_parent_strategy config option has been enabled" do
before { FactoryGirl.use_parent_strategy = true }
it "assigns but does not save associations" do
expect(subject.user).to be_kind_of(User)
expect(subject.user).to be_new_record
end
end
it "assigns but does not save associations when using parent strategy" do
FactoryGirl.use_parent_strategy = true
expect(subject.user).to be_kind_of(User)
expect(subject.user).to be_new_record
end
end
describe "a built instance with strategy: :create" do
include FactoryGirl::Syntax::Methods
before do
define_model('User')
define_model('Post', user_id: :integer) do
belongs_to :user
end
FactoryGirl.define do
factory :user
factory :post do
association(:user, strategy: :create)
end
end
end
subject { build(:post) }
it { should be_new_record }
it "assigns and saves associations" do
expect(subject.user).to be_kind_of(User)
expect(subject.user).not_to be_new_record
end
end
describe "calling `build` with a block" do
include FactoryGirl::Syntax::Methods
before do
define_model('Company', name: :string)
FactoryGirl.define do
factory :company
end
end
it "passes the built instance" do
build(:company, name: 'thoughtbot') do |company|
expect(company.name).to eq('thoughtbot')
end
end
it "returns the built instance" do
expected = nil
result = build(:company) do |company|
expected = company
"hello!"
end
expect(result).to eq expected
end
end