Class: FactoryGirl::Declaration::Implicit Private
- Inherits:
-
FactoryGirl::Declaration
- Object
- FactoryGirl::Declaration
- FactoryGirl::Declaration::Implicit
- Defined in:
- lib/factory_girl/declaration/implicit.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, factory = nil, ignored = false) ⇒ Implicit
constructor
private
A new instance of Implicit.
Methods inherited from FactoryGirl::Declaration
Constructor Details
#initialize(name, factory = nil, ignored = false) ⇒ Implicit
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 Implicit.
5 6 7 8 |
# File 'lib/factory_girl/declaration/implicit.rb', line 5 def initialize(name, factory = nil, ignored = false) super(name, ignored) @factory = factory 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.
10 11 12 13 14 |
# File 'lib/factory_girl/declaration/implicit.rb', line 10 def ==(other) name == other.name && factory == other.factory && ignored == other.ignored end |