Sha256: 62b38e2f8752d5e171ebeead29e083985f8261b7d863bdf513fd8bc2189e4495

Contents?: true

Size: 864 Bytes

Versions: 27

Compression:

Stored size: 864 Bytes

Contents

class Factory
  module Syntax

    # Extends ActiveRecord::Base to provide a make class method, which is a
    # shortcut for Factory.create.
    #
    # Usage:
    #
    #   require 'factory_girl/syntax/make'
    #   
    #   Factory.define :user do |factory|
    #     factory.name 'Billy Bob'
    #     factory.email 'billy@bob.example.com'
    #   end
    #
    #   User.make(:name => 'Johnny')
    #
    # This syntax was derived from Pete Yandell's machinist.
    module Make
      module ActiveRecord #:nodoc:

        def self.included(base) # :nodoc:
          base.extend ClassMethods
        end

        module ClassMethods #:nodoc:

          def make(overrides = {})
            Factory.create(name.underscore, overrides)
          end

        end

      end
    end
  end
end

ActiveRecord::Base.send(:include, Factory::Syntax::Make::ActiveRecord)

Version data entries

27 entries across 27 versions & 12 rubygems

Version Path
BrettRasmussen-factory_girl-1.2.2 lib/factory_girl/syntax/make.rb
BrettRasmussen-factory_girl-1.2.3 lib/factory_girl/syntax/make.rb
agibralter-factory_girl-1.2.1 lib/factory_girl/syntax/make.rb
lacomartincik-factory_girl-1.2.1.1 lib/factory_girl/syntax/make.rb
masa-iwasaki-factory_girl-1.2.1.1 lib/factory_girl/syntax/make.rb
qrush-factory_girl-1.2.1.1 lib/factory_girl/syntax/make.rb
thoughtbot-factory_girl-1.2.0 lib/factory_girl/syntax/make.rb
thoughtbot-factory_girl-1.2.1 lib/factory_girl/syntax/make.rb
thoughtbot-factory_girl-1.2.2 lib/factory_girl/syntax/make.rb
vitalish-factory_girl-1.2.10 lib/factory_girl/syntax/make.rb
vitalish-factory_girl-1.2.9 lib/factory_girl/syntax/make.rb
vitalish-factory_girl-1.2.8 lib/factory_girl/syntax/make.rb
vitalish-factory_girl-1.2.7 lib/factory_girl/syntax/make.rb
vitalish-factory_girl-1.2.6 lib/factory_girl/syntax/make.rb
lockbox_middleware-1.2.1 vendor/gems/factory_girl-1.2.3/lib/factory_girl/syntax/make.rb
malvestuto_factory_girl-1.2.5 lib/factory_girl/syntax/make.rb
factory_girl-1.2.4 lib/factory_girl/syntax/make.rb
jeffrafter-factory_girl-1.2.3 lib/factory_girl/syntax/make.rb
masa-iwasaki-factory_girl-1.2.3.2 lib/factory_girl/syntax/make.rb
masa-iwasaki-factory_girl-1.2.3.1 lib/factory_girl/syntax/make.rb