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/parent_spec.rb

89 lines
2.5 KiB
Ruby
Raw Normal View History

describe "an instance generated by a factory that inherits from another factory" do
before do
2012-03-09 17:20:38 -05:00
define_model("User", name: :string, admin: :boolean, email: :string, upper_email: :string, login: :string)
FactoryBot.define do
factory :user do
name "John"
email { "#{name.downcase}@example.com" }
login { email }
factory :admin do
name "admin"
admin true
upper_email { email.upcase }
end
factory :guest do
email { "#{name}-guest@example.com" }
end
factory :no_email do
email ""
end
factory :bill do
name { "Bill" } #block to make attribute dynamic
end
end
end
end
describe "the parent class" do
subject { FactoryBot.create(:user) }
it { should_not be_admin }
2013-01-18 13:27:57 -05:00
its(:email) { should eq "john@example.com" }
end
describe "the child class redefining parent's static method used by a dynamic method" do
subject { FactoryBot.create(:admin) }
it { should be_kind_of(User) }
it { should be_admin }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "admin" }
its(:email) { should eq "admin@example.com" }
its(:upper_email) { should eq "ADMIN@EXAMPLE.COM"}
end
describe "the child class redefining parent's dynamic method" do
subject { FactoryBot.create(:guest) }
it { should_not be_admin }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "John" }
its(:email) { should eql "John-guest@example.com" }
2013-01-18 13:27:57 -05:00
its(:login) { should eq "John-guest@example.com" }
end
describe "the child class redefining parent's dynamic attribute with static attribute" do
subject { FactoryBot.create(:no_email) }
2013-01-18 13:27:57 -05:00
its(:email) { should eq "" }
end
describe "the child class redefining parent's static attribute with dynamic attribute" do
subject { FactoryBot.create(:bill) }
2013-01-18 13:27:57 -05:00
its(:name) { should eq "Bill" }
end
end
describe "nested factories with different parents" do
before do
2012-03-09 17:20:38 -05:00
define_model("User", name: :string)
FactoryBot.define do
factory :user do
name "Basic User"
factory :male_user do
name "John Doe"
end
2012-03-09 17:20:38 -05:00
factory :uppercase_male_user, parent: :male_user do
after(:build) { |user| user.name = user.name.upcase }
end
end
end
end
it "honors :parent over the factory block nesting" do
expect(FactoryBot.build(:uppercase_male_user).name).to eq "JOHN DOE"
end
end