Method: FactoryBot::Evaluator.attribute_list

Defined in:
lib/factory_bot/evaluator.rb

.attribute_listObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



58
59
60
61
62
63
64
# File 'lib/factory_bot/evaluator.rb', line 58

def self.attribute_list
  AttributeList.new.tap do |list|
    attribute_lists.each do |attribute_list|
      list.apply_attributes attribute_list.to_a
    end
  end
end