Skip to content

Instantly share code, notes, and snippets.

@Narnach
Created April 17, 2010 13:27
Show Gist options
  • Select an option

  • Save Narnach/369534 to your computer and use it in GitHub Desktop.

Select an option

Save Narnach/369534 to your computer and use it in GitHub Desktop.
# Require this from spec/spec_helper.rb or include it there to make Factory.create!(:model) work
require 'factory_girl'
module FactoryCreateBang
def create!(*args,&block)
object = self.build(*args, &block)
object.save!
object
end
end
Factory.extend(FactoryCreateBang)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment