Created
May 28, 2013 13:14
-
-
Save psychocandy/5662661 to your computer and use it in GitHub Desktop.
Factory girl example
This file contains 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
# one way: | |
FactoryGirl.create_list(:monetization_campaign, 10) | |
# another way: | |
10.times { FactoryGirl.create(:monetization_campaign) } | |
# guarentee ids: | |
10.times { |n| FactoryGirl.create(:monetization_campaign, id: n) } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment