Class: FactoryGirl::Attribute

Inherits:
Object
  • Object
show all
Defined in:
lib/factory_girl/attribute.rb,
lib/factory_girl/attribute/static.rb,
lib/factory_girl/attribute/dynamic.rb,
lib/factory_girl/attribute/sequence.rb,
lib/factory_girl/attribute/association.rb

Overview

:nodoc:

Direct Known Subclasses

Association, Dynamic, Sequence, Static

Defined Under Namespace

Classes: Association, Dynamic, Sequence, Static

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, ignored) ⇒ Attribute

Returns a new instance of Attribute.



11
12
13
14
15
# File 'lib/factory_girl/attribute.rb', line 11

def initialize(name, ignored)
  @name = name.to_sym
  @ignored = ignored
  ensure_non_attribute_writer!
end

Instance Attribute Details

#ignoredObject (readonly)

Returns the value of attribute ignored.



9
10
11
# File 'lib/factory_girl/attribute.rb', line 9

def ignored
  @ignored
end

#nameObject (readonly)

Returns the value of attribute name.



9
10
11
# File 'lib/factory_girl/attribute.rb', line 9

def name
  @name
end

Instance Method Details

#add_to(proxy) ⇒ Object



17
18
19
20
21
22
23
# File 'lib/factory_girl/attribute.rb', line 17

def add_to(proxy)
  if @ignored
    proxy.set_ignored(self, to_proc(proxy))
  else
    proxy.set(self, to_proc(proxy))
  end
end

#alias_for?(attr) ⇒ Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/factory_girl/attribute.rb', line 33

def alias_for?(attr)
  FactoryGirl.aliases_for(attr).include?(name)
end

#association?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/factory_girl/attribute.rb', line 29

def association?
  false
end

#to_proc(proxy) ⇒ Object



25
26
27
# File 'lib/factory_girl/attribute.rb', line 25

def to_proc(proxy)
  lambda { }
end