mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
c716ce01b4
Also: add a deprecation warning to factory_girl, asking users to switch to factory_bot https://github.com/thoughtbot/factory_girl/issues/921
22 lines
659 B
Ruby
22 lines
659 B
Ruby
require "spec_helper"
|
|
|
|
describe FactoryBot do
|
|
let(:factory) { FactoryBot::Factory.new(:object) }
|
|
let(:sequence) { FactoryBot::Sequence.new(:email) }
|
|
let(:trait) { FactoryBot::Trait.new(:admin) }
|
|
|
|
it "finds a registered factory" do
|
|
FactoryBot.register_factory(factory)
|
|
expect(FactoryBot.factory_by_name(factory.name)).to eq factory
|
|
end
|
|
|
|
it "finds a registered sequence" do
|
|
FactoryBot.register_sequence(sequence)
|
|
expect(FactoryBot.sequence_by_name(sequence.name)).to eq sequence
|
|
end
|
|
|
|
it "finds a registered trait" do
|
|
FactoryBot.register_trait(trait)
|
|
expect(FactoryBot.trait_by_name(trait.name)).to eq trait
|
|
end
|
|
end
|