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/definition_spec.rb
Avielle c716ce01b4 Replace 'girl' with 'bot' everywhere (#1051)
Also: add a deprecation warning to factory_girl, asking users to switch to
factory_bot

https://github.com/thoughtbot/factory_girl/issues/921
2017-10-20 15:20:28 -04:00

54 lines
1.2 KiB
Ruby

require 'spec_helper'
describe "an instance generated by a factory with a custom class name" do
before do
define_model("User", admin: :boolean)
FactoryBot.define do
factory :user
factory :admin, class: User do
admin { true }
end
end
end
subject { FactoryBot.create(:admin) }
it { should be_kind_of(User) }
it { should be_admin }
end
describe "attributes defined using Symbol#to_proc" do
before do
define_model("User", password: :string, password_confirmation: :string)
FactoryBot.define do
factory :user do
password "foo"
password_confirmation &:password
end
end
end
it "assigns values correctly" do
user = FactoryBot.build(:user)
expect(user.password).to eq "foo"
expect(user.password_confirmation).to eq "foo"
end
it "assigns value with override correctly" do
user = FactoryBot.build(:user, password: "bar")
expect(user.password).to eq "bar"
expect(user.password_confirmation).to eq "bar"
end
it "assigns overridden value correctly" do
user = FactoryBot.build(:user, password_confirmation: "bar")
expect(user.password).to eq "foo"
expect(user.password_confirmation).to eq "bar"
end
end