summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2014-05-18 15:23:54 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2014-05-18 15:23:54 +0200
commit3d7a00d1c5cafe37e49a716c8ae075e984b3111a (patch)
tree4ca8f17d5b8b1b94fdcb99239c85ad07584ebb84 /README.rst
parentecde9a5c2f5d7ea230e68e6d0b3586e5956e55c0 (diff)
downloadfactory-boy-3d7a00d1c5cafe37e49a716c8ae075e984b3111a.tar
factory-boy-3d7a00d1c5cafe37e49a716c8ae075e984b3111a.tar.gz
Improve docs on create_batch (Closes #139).
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst10
1 files changed, 10 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index b4ba689..0ba4a86 100644
--- a/README.rst
+++ b/README.rst
@@ -155,6 +155,16 @@ No matter which strategy is used, it's possible to override the defined attribut
"Joe"
+It is also possible to create a bunch of objects in a single call:
+
+.. code-block:: pycon
+
+ >>> users = USerFactory.build(10, first_name="Joe")
+ >>> len(users)
+ 10
+ >>> [user.first_name for user in users]
+ ["Joe", "Joe", "Joe", "Joe", "Joe", "Joe", "Joe", "Joe", "Joe", "Joe"]
+
Lazy Attributes
"""""""""""""""