Created
September 14, 2012 20:45
-
-
Save jasonswett/3724688 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
FactoryGirl.define do | |
factory :employee do | |
# Your callback can be either for :build or :create, whichever | |
# makes the most sense for your situation. | |
after(:build) { |instance| instance.skills << create_list(:skill, 5) } | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment