2017-10-20 15:20:28 -04:00
|
|
|
describe FactoryBot do
|
|
|
|
let(:factory) { FactoryBot::Factory.new(:object) }
|
|
|
|
let(:sequence) { FactoryBot::Sequence.new(:email) }
|
|
|
|
let(:trait) { FactoryBot::Trait.new(:admin) }
|
|
|
|
|
2019-04-26 15:48:37 -04:00
|
|
|
it "finds a registered factory", :silence_deprecation do
|
2017-10-20 15:20:28 -04:00
|
|
|
FactoryBot.register_factory(factory)
|
|
|
|
expect(FactoryBot.factory_by_name(factory.name)).to eq factory
|
|
|
|
end
|
|
|
|
|
2019-04-26 15:48:37 -04:00
|
|
|
it "finds a registered sequence", :silence_deprecation do
|
2017-10-20 15:20:28 -04:00
|
|
|
FactoryBot.register_sequence(sequence)
|
|
|
|
expect(FactoryBot.sequence_by_name(sequence.name)).to eq sequence
|
|
|
|
end
|
|
|
|
|
2019-04-19 16:01:32 -04:00
|
|
|
it "finds a registered trait", :silence_deprecation do
|
2017-10-20 15:20:28 -04:00
|
|
|
FactoryBot.register_trait(trait)
|
|
|
|
expect(FactoryBot.trait_by_name(trait.name)).to eq trait
|
|
|
|
end
|
2019-01-11 01:39:39 -05:00
|
|
|
|
2019-04-26 15:48:37 -04:00
|
|
|
it "finds a registered strategy" do
|
|
|
|
FactoryBot.register_strategy(:strategy_name, :strategy_class)
|
|
|
|
expect(FactoryBot.strategy_by_name(:strategy_name)).
|
|
|
|
to eq :strategy_class
|
|
|
|
end
|
|
|
|
|
2019-01-11 01:39:39 -05:00
|
|
|
describe ".use_parent_strategy" do
|
|
|
|
it "is true by default" do
|
|
|
|
expect(FactoryBot.use_parent_strategy).to be true
|
|
|
|
end
|
|
|
|
end
|
2017-10-20 15:20:28 -04:00
|
|
|
end
|