Class: FactoryGirl::Attribute::Static Private

Inherits:
FactoryGirl::Attribute show all
Defined in:
lib/factory_girl/attribute/static.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::Attribute

#ignored, #name

Instance Method Summary collapse

Methods inherited from FactoryGirl::Attribute

#alias_for?, #association?

Constructor Details

#initialize(name, value, ignored) ⇒ Static

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 Static.



5
6
7
8
# File 'lib/factory_girl/attribute/static.rb', line 5

def initialize(name, value, ignored)
  super(name, ignored)
  @value = value
end

Instance Method Details

#to_procObject

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
# File 'lib/factory_girl/attribute/static.rb', line 10

def to_proc
  value = @value
  -> { value }
end