summaryrefslogtreecommitdiff
path: root/factory/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'factory/__init__.py')
-rw-r--r--factory/__init__.py10
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,
)