Class: FactoryGirl::Declaration::Implicit Private

Inherits:
FactoryGirl::Declaration show all
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

#name

Instance Method Summary collapse

Methods inherited from FactoryGirl::Declaration

#to_attributes

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