mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
3282eea658
This allows for Attribute#to_proc to not require a proxy to be passed to return a Proc. It also allows for removal of Attribute#add_to
40 lines
843 B
Ruby
40 lines
843 B
Ruby
require "factory_girl/attribute/static"
|
|
require "factory_girl/attribute/dynamic"
|
|
require "factory_girl/attribute/association"
|
|
require "factory_girl/attribute/sequence"
|
|
|
|
module FactoryGirl
|
|
|
|
class Attribute #:nodoc:
|
|
attr_reader :name, :ignored
|
|
|
|
def initialize(name, ignored)
|
|
@name = name.to_sym
|
|
@ignored = ignored
|
|
ensure_non_attribute_writer!
|
|
end
|
|
|
|
def to_proc
|
|
lambda { }
|
|
end
|
|
|
|
def association?
|
|
false
|
|
end
|
|
|
|
def alias_for?(attr)
|
|
FactoryGirl.aliases_for(attr).include?(name)
|
|
end
|
|
|
|
private
|
|
|
|
def ensure_non_attribute_writer!
|
|
if @name.to_s =~ /=$/
|
|
attribute_name = $`
|
|
raise AttributeDefinitionError,
|
|
"factory_girl uses 'f.#{attribute_name} value' syntax " +
|
|
"rather than 'f.#{attribute_name} = value'"
|
|
end
|
|
end
|
|
end
|
|
end
|