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`
27 lines
460 B
Ruby
27 lines
460 B
Ruby
module FactoryBot
|
|
# @api private
|
|
class NullFactory
|
|
attr_reader :definition
|
|
|
|
def initialize
|
|
@definition = Definition.new(:null_factory)
|
|
end
|
|
|
|
delegate :defined_traits, :callbacks, :attributes, :constructor,
|
|
:to_create, to: :definition
|
|
|
|
def compile
|
|
end
|
|
|
|
def class_name
|
|
end
|
|
|
|
def evaluator_class
|
|
FactoryBot::Evaluator
|
|
end
|
|
|
|
def hierarchy_class
|
|
FactoryBot::DefinitionHierarchy
|
|
end
|
|
end
|
|
end
|