mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
5f1a1de114
This commit applies the changes from running `standardrb --fix`
33 lines
908 B
Ruby
33 lines
908 B
Ruby
module FactoryBot
|
|
# @api private
|
|
class Configuration
|
|
attr_reader(
|
|
:callback_names,
|
|
:factories,
|
|
:inline_sequences,
|
|
:sequences,
|
|
:strategies,
|
|
:traits
|
|
)
|
|
|
|
def initialize
|
|
@factories = Decorator::DisallowsDuplicatesRegistry.new(Registry.new("Factory"))
|
|
@sequences = Decorator::DisallowsDuplicatesRegistry.new(Registry.new("Sequence"))
|
|
@traits = Decorator::DisallowsDuplicatesRegistry.new(Registry.new("Trait"))
|
|
@strategies = Registry.new("Strategy")
|
|
@callback_names = Set.new
|
|
@definition = Definition.new(:configuration)
|
|
@inline_sequences = []
|
|
|
|
to_create(&:save!)
|
|
initialize_with { new }
|
|
end
|
|
|
|
delegate :to_create, :skip_create, :constructor, :before, :after,
|
|
:callback, :callbacks, to: :@definition
|
|
|
|
def initialize_with(&block)
|
|
@definition.define_constructor(&block)
|
|
end
|
|
end
|
|
end
|