Skip to content

Instantly share code, notes, and snippets.

@galtenberg
Forked from stephencelis/minifacture.rb
Created October 3, 2010 06:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save galtenberg/608330 to your computer and use it in GitHub Desktop.
Save galtenberg/608330 to your computer and use it in GitHub Desktop.
# Factory girl, relaxed.
#
# Factory.define :user do |f|
# f.login 'johndoe%d' # Sequence.
# f.email '%{login}@example.com' # Interpolate.
# f.password f.password_confirmation('foobar') # Chain.
# end
#
# Factory.define :post do |f|
# f.user { Factory :user } # Blocks, if you must.
# end
class Miniskirt < Struct.new(:__klass__)
undef_method *instance_methods.grep(/^(?!__|object_id)/) # BlankerSlate.
@@factories = {} and private_class_method :new
class << self
def define(name)
@@factories[name = name.to_s] = {} and yield new(name)
end
def build(name, attrs = {})
(name, n = name.to_s) and (m = name.classify.constantize).new do |rec|
attrs.symbolize_keys!.reverse_update(@@factories[name]).each do |k, v|
rec.send "#{k}=", case v when String # Sequence and interpolate.
v.sub(/%\d*d/) {|d| d % n ||= m.maximum(:id).to_i + 1} % attrs % n
when Proc then v.call(rec) else v
end
end
end
end
def create(name, attrs = {})
build(name, attrs).tap { |record| record.save! }
end
end
def method_missing(name, value = nil, &block)
@@factories[__klass__][name] = block || value
end
end
def Miniskirt(name, attrs = {})
Miniskirt.create(name, attrs)
end
Factory = Miniskirt
alias Factory Miniskirt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment