summaryrefslogtreecommitdiff
path: root/docs/introduction.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 /docs/introduction.rst
parentb245a83019a8735d0c80c07275cd426bc60dd9f8 (diff)
downloadfactory-boy-3a5709527d362a960a1a35769375412e4536839e.tar
factory-boy-3a5709527d362a960a1a35769375412e4536839e.tar.gz
Rename 'target' to 'model'.
Diffstat (limited to 'docs/introduction.rst')
-rw-r--r--docs/introduction.rst24
1 files changed, 12 insertions, 12 deletions
diff --git a/docs/introduction.rst b/docs/introduction.rst
index 6ea6b5e..5e3b4d8 100644
--- a/docs/introduction.rst
+++ b/docs/introduction.rst
@@ -18,11 +18,11 @@ Basic usage
-----------
-Factories declare a set of attributes used to instantiate an object, whose class is defined in the ``class Meta``'s ``target`` attribute:
+Factories declare a set of attributes used to instantiate an object, whose class is defined in the ``class Meta``'s ``model`` attribute:
- Subclass ``factory.Factory`` (or a more suitable subclass)
- Add a ``class Meta:`` block
-- Set its ``target`` attribute to the target class
+- Set its ``model`` attribute to the target class
- Add defaults for keyword args to pass to the associated class' ``__init__`` method
@@ -33,7 +33,7 @@ Factories declare a set of attributes used to instantiate an object, whose class
class UserFactory(factory.Factory):
class Meta:
- target = base.User
+ model = base.User
firstname = "John"
lastname = "Doe"
@@ -59,7 +59,7 @@ A given class may be associated to many :class:`~factory.Factory` subclasses:
class EnglishUserFactory(factory.Factory):
class Meta:
- target = base.User
+ model = base.User
firstname = "John"
lastname = "Doe"
@@ -68,7 +68,7 @@ A given class may be associated to many :class:`~factory.Factory` subclasses:
class FrenchUserFactory(factory.Factory):
class Meta:
- target = base.User
+ model = base.User
firstname = "Jean"
lastname = "Dupont"
@@ -93,7 +93,7 @@ This is achieved with the :class:`~factory.Sequence` declaration:
class UserFactory(factory.Factory):
class Meta:
- target = models.User
+ model = models.User
username = factory.Sequence(lambda n: 'user%d' % n)
@@ -110,7 +110,7 @@ This is achieved with the :class:`~factory.Sequence` declaration:
class UserFactory(factory.Factory):
class Meta:
- target = models.User
+ model = models.User
@factory.sequence
def username(n):
@@ -128,7 +128,7 @@ taking the object being built and returning the value for the field:
class UserFactory(factory.Factory):
class Meta:
- target = models.User
+ model = models.User
username = factory.Sequence(lambda n: 'user%d' % n)
email = factory.LazyAttribute(lambda obj: '%s@example.com' % obj.username)
@@ -154,7 +154,7 @@ taking the object being built and returning the value for the field:
class UserFactory(factory.Factory):
class Meta:
- target = models.User
+ model = models.User
username = factory.Sequence(lambda n: 'user%d' % n)
@@ -177,7 +177,7 @@ and update them with its own declarations:
class UserFactory(factory.Factory):
class Meta:
- target = base.User
+ model = base.User
firstname = "John"
lastname = "Doe"
@@ -224,7 +224,7 @@ This is handled by the :data:`~factory.FactoryOptions.arg_parameters` attribute:
class MyFactory(factory.Factory):
class Meta:
- target = MyClass
+ model = MyClass
arg_parameters = ('x', 'y')
x = 1
@@ -262,7 +262,7 @@ Calling a :class:`~factory.Factory` subclass will provide an object through the
class MyFactory(factory.Factory):
class Meta:
- target = MyClass
+ model = MyClass
.. code-block:: pycon