1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/lib/factory_girl/proxy.rb
2009-01-02 16:39:24 -05:00

62 lines
1.4 KiB
Ruby

class Factory
class Proxy #:nodoc:
def initialize(klass)
end
def get(attribute)
nil
end
def set(attribute, value)
end
def associate(name, factory, attributes)
end
# Generates an association using the current build strategy.
#
# Arguments:
# name: (Symbol)
# The name of the factory that should be used to generate this
# association.
# attributes: (Hash)
# A hash of attributes that should be overridden for this association.
#
# Returns:
# The generated association for the current build strategy. Note that
# assocaitions are not generated for the attributes_for strategy. Returns
# nil in this case.
#
# Example:
#
# Factory.define :user do |f|
# # ...
# end
#
# Factory.define :post do |f|
# # ...
# f.author {|a| a.association :user, :name => 'Joe' }
# end
#
# # Builds (but doesn't save) a Post and a User
# Factory.build(:post)
#
# # Builds and saves a User, builds a Post, assigns the User to the
# # author association, and saves the User.
# Factory.create(:post)
#
def association(name, overrides = {})
nil
end
def method_missing(method, *args, &block)
get(method)
end
def result
raise NotImplementedError, "Strategies must return a result"
end
end
end