summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorRaphaël Barrois <raphael.barrois@polytechnique.org>2014-05-18 15:10:56 +0200
committerRaphaël Barrois <raphael.barrois@polytechnique.org>2014-05-18 15:10:56 +0200
commit3a5709527d362a960a1a35769375412e4536839e (patch)
tree0d16ff742914585556ccc55ef75cbec162f4a271 /README.rst
parentb245a83019a8735d0c80c07275cd426bc60dd9f8 (diff)
downloadfactory-boy-3a5709527d362a960a1a35769375412e4536839e.tar
factory-boy-3a5709527d362a960a1a35769375412e4536839e.tar.gz
Rename 'target' to 'model'.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.rst b/README.rst
index 787d754..b4ba689 100644
--- a/README.rst
+++ b/README.rst
@@ -95,7 +95,7 @@ Defining factories
""""""""""""""""""
Factories declare a set of attributes used to instantiate an object.
-The class of the object must be defined in the ``target`` field of a ``class Meta:`` attribute:
+The class of the object must be defined in the ``model`` field of a ``class Meta:`` attribute:
.. code-block:: python
@@ -104,7 +104,7 @@ The class of the object must be defined in the ``target`` field of a ``class Met
class UserFactory(factory.Factory):
class Meta:
- target = models.User
+ model = models.User
first_name = 'John'
last_name = 'Doe'
@@ -113,7 +113,7 @@ The class of the object must be defined in the ``target`` field of a ``class Met
# Another, different, factory for the same object
class AdminFactory(factory.Factory):
class Meta:
- target = models.User
+ model = models.User
first_name = 'Admin'
last_name = 'User'
@@ -168,7 +168,7 @@ These "lazy" attributes can be added as follows:
class UserFactory(factory.Factory):
class Meta:
- target = models.User
+ model = models.User
first_name = 'Joe'
last_name = 'Blow'
@@ -189,7 +189,7 @@ Unique values in a specific format (for example, e-mail addresses) can be genera
class UserFactory(factory.Factory):
class Meta:
- target = models.User
+ model = models.User
email = factory.Sequence(lambda n: 'person{0}@example.com'.format(n))
@@ -209,7 +209,7 @@ This is handled by the ``SubFactory`` helper:
class PostFactory(factory.Factory):
class Meta:
- target = models.Post
+ model = models.Post
author = factory.SubFactory(UserFactory)