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)
- - (Object) ==(other) private
-
- (Dynamic) initialize(name, ignored = false, block = nil)
constructor
private
A new instance of Dynamic.
Methods inherited from FactoryGirl::Declaration
Constructor Details
- (Dynamic) initialize(name, ignored = false, block = nil)
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.
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
- (Object) ==(other)
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 |