diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2011-12-21 02:46:40 +0100 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2011-12-21 02:46:40 +0100 |
commit | 21c80c79b4706d8acaed46ac8c8422a14c1eb36e (patch) | |
tree | ea848bd3277facaf4e28465612db8fada092dfeb /factory/__init__.py | |
parent | 6e5abce2451b873b35f495460603dce4ca7acd5e (diff) | |
download | factory-boy-21c80c79b4706d8acaed46ac8c8422a14c1eb36e.tar factory-boy-21c80c79b4706d8acaed46ac8c8422a14c1eb36e.tar.gz |
Cleanup 'factory.declarations'.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'factory/__init__.py')
-rw-r--r-- | factory/__init__.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/factory/__init__.py b/factory/__init__.py index e02a7ce..efc0001 100644 --- a/factory/__init__.py +++ b/factory/__init__.py @@ -27,9 +27,14 @@ from base import ( Factory, StubFactory, DjangoModelFactory, + BUILD_STRATEGY, CREATE_STRATEGY, - STUB_STRATEGY + STUB_STRATEGY, + + DJANGO_CREATION, + NAIVE_BUILD, + MOGO_BUILD, ) from declarations import ( @@ -37,8 +42,9 @@ from declarations import ( Sequence, LazyAttributeSequence, SubFactory, + lazy_attribute, sequence, - lazy_attribute_sequence + lazy_attribute_sequence, ) |