Class: FactoryBot::Declaration::Association Private

Inherits:
FactoryBot::Declaration show all
Defined in:
lib/factory_bot/declaration/association.rb

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

Instance Attribute Summary

Attributes inherited from FactoryBot::Declaration

#name

Instance Method Summary collapse

Methods inherited from FactoryBot::Declaration

#to_attributes

Constructor Details

#initialize(name, *options) ⇒ Association

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.

Returns a new instance of Association.



5
6
7
8
9
10
11
# File 'lib/factory_bot/declaration/association.rb', line 5

def initialize(name, *options)
  super(name, false)
  @options = options.dup
  @overrides = options.extract_options!
  @factory_name = @overrides.delete(:factory) || name
  @traits = options
end

Instance Method Details

#==(other) ⇒ Object

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.



13
14
15
16
17
# File 'lib/factory_bot/declaration/association.rb', line 13

def ==(other)
  self.class == other.class &&
    name == other.name &&
    options == other.options
end