Class: FactoryGirl::Declaration::Association Private
- Inherits:
-
FactoryGirl::Declaration
- Object
- FactoryGirl::Declaration
- FactoryGirl::Declaration::Association
- Defined in:
- lib/factory_girl/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 FactoryGirl::Declaration
Instance Method Summary collapse
- #==(other) ⇒ Object private
-
#initialize(name, *options) ⇒ Association
constructor
private
A new instance of Association.
Methods inherited from FactoryGirl::Declaration
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 |
# File 'lib/factory_girl/declaration/association.rb', line 5 def initialize(name, *) super(name, false) @options = .dup @overrides = . @traits = 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.
12 13 14 15 |
# File 'lib/factory_girl/declaration/association.rb', line 12 def ==(other) name == other.name && == other. end |