Document build_list and create_list with runtime traits.

This commit is contained in:
Simone Carletti 2012-02-07 16:19:22 +01:00 committed by Joshua Clayton
parent 6482a6477f
commit 13129b04e1
1 changed files with 18 additions and 0 deletions

View File

@ -480,6 +480,24 @@ FactoryGirl.create(:user, :admin, :male, :name => "Jon Snow")
This ability works with `build`, `build_stubbed`, `attributes_for`, and `create`.
`create_list` and `build_list` methods are supported as well. Just remember to pass
the number of instances to create/build as second parameter, as documented in the
"Building or Creating Multiple Records" section of this file.
```ruby
factory :user do
name "Friendly User"
trait :admin do
admin true
end
end
# creates 3 admin users with gender "Male" and name "Jon Snow"
FactoryGirl.create_list(:user, 3, :admin, :male, :name => "Jon Snow")
```
Callbacks
---------