Created
April 17, 2010 13:27
-
-
Save Narnach/369534 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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