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

87 lines
1.6 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe "a built instance" do
include FactoryGirl::Syntax::Methods
before do
define_model('User')
2012-03-09 17:20:38 -05:00
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) }
2013-01-18 13:27:57 -05:00
it { should be_new_record }
it "assigns and saves associations" do
2013-01-18 13:27:57 -05:00
expect(subject.user).to be_kind_of(User)
expect(subject.user).not_to be_new_record
end
end
2012-03-09 17:20:38 -05:00
describe "a built instance with strategy: :build" do
include FactoryGirl::Syntax::Methods
before do
define_model('User')
2012-03-09 17:20:38 -05:00
define_model('Post', user_id: :integer) do
belongs_to :user
end
FactoryGirl.define do
factory :user
factory :post do
2012-03-09 17:20:38 -05:00
association(:user, strategy: :build)
end
end
end
subject { build(:post) }
2013-01-18 13:27:57 -05:00
it { should be_new_record }
it "assigns but does not save associations" do
2013-01-18 13:27:57 -05:00
expect(subject.user).to be_kind_of(User)
expect(subject.user).to be_new_record
end
end
describe "calling `build` with a block" do
include FactoryGirl::Syntax::Methods
before do
2012-03-09 17:20:38 -05:00
define_model('Company', name: :string)
FactoryGirl.define do
factory :company
end
end
it "passes the built instance" do
2012-03-09 17:20:38 -05:00
build(:company, name: 'thoughtbot') do |company|
2013-01-18 13:27:57 -05:00
expect(company.name).to eq('thoughtbot')
end
end
it "returns the built instance" do
expected = nil
2013-01-18 13:27:57 -05:00
result = build(:company) do |company|
expected = company
"hello!"
2013-01-18 13:27:57 -05:00
end
expect(result).to eq expected
end
end