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