pydanny / cookiecutter-djangopackage

A cookiecutter template for creating reusable Django packages quickly.
436 stars 153 forks source link

Move example application to a test_utils directory #942

Closed jonathan-s closed 4 years ago

jonathan-s commented 4 years ago

We create a test utils directory where we can store things like a factory.py at a later stage. This factory.py could later be re-used by any other project that uses this package if it needs that factory py for any testing of it own.

Because we want to be able to use that future factory.py ourselves we need to place the testing app in test_utils, which is what this PR accomplishes.

This PR also closes #228 as we create a migration directory in the test app.