diff options
author | Chris Lasher <chris.lasher@gmail.com> | 2013-01-17 16:29:14 -0500 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-03-04 23:25:05 +0100 |
commit | be403fd5a109af49d228ab620ab14d04cb9e34c8 (patch) | |
tree | 065329fc4df06f0d1348a495054a6ee283cf13b2 /tests/tools.py | |
parent | 7d792430e103984a91c102c33da79be2426bc632 (diff) | |
download | factory-boy-be403fd5a109af49d228ab620ab14d04cb9e34c8.tar factory-boy-be403fd5a109af49d228ab620ab14d04cb9e34c8.tar.gz |
Use extracted argument in PostGenerationMethodCall.
This changeset makes it possible possible to override the default method
arguments (or "method_args") passed in when instantiating
PostGenerationMethodCall. Now the user can override the default
arguments to the method called during post-generation when instantiating
a factory.
For example, using this UserFactory,
class UserFactory(factory.Factory):
FACTORY_FOR = User
username = factory.Sequence(lambda n: 'user{0}'.format(n))
password = factory.PostGenerationMethodCall(
'set_password', None, 'defaultpassword')
by default, the user will have a password set to 'defaultpassword', but
this can be overridden by passing in a new password as a keyword
argument:
>>> u = UserFactory()
>>> u.check_password('defaultpassword')
True
>>> other_u = UserFactory(password='different')
>>> other_u.check_password('defaultpassword')
False
>>> other_u.check_password('different')
True
This changeset introduces a testing dependency on the Mock package
http://pypi.python.org/pypi/mock. While this is a third-party dependency
in Python 2, it is part of the Python 3 standard library, as unit.mock,
and so a reasonable dependency to satisfy.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'tests/tools.py')
0 files changed, 0 insertions, 0 deletions