@api private
# File lib/factory_girl/declaration/association.rb, line 5 def initialize(name, *options) super(name, false) @options = options.dup @overrides = options.extract_options! @traits = options end
# File lib/factory_girl/declaration/association.rb, line 12 def ==(other) name == other.name && options == other.options end