Skip to main content

django-fixture-generator is a reusable django application to make writing fixtures not suck.

Project description

``django-fixture-generator``
============================

Requires Django 1.2.

* Add ``"fixture_generator"`` to your ``INSTALLED_APPS`` setting.
* Create a ``fixture_gen.py`` file in one of your apps. It should look
something like:

from fixture_generator import fixture_generator

from django.contrib.auth.models import User, Groups

@fixture_generator(User, requires=["my_app.test_groups"])
def test_users():
muggles, wizards = Group.objects.order_by("name")
simon = User.objects.create(username="simon")
adrian = User.objects.create(username="adrian")
jacob = User.objects.create(username="jacob")

simon.groups.add(wizards)
adrian.groups.add(muggles)
jacob.groups.add(muggles)


@fixture_generator(Group)
def test_groups():
Group.objects.create(name="Muggles")
Group.objects.create(name="Wizards")

* Run ``manage.py generate_fixture my_app.test_users``.
* Save the resulting fixture somewhere.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-fixture-generator-0.2.0.tar.gz (4.1 kB view details)

Uploaded Source

File details

Details for the file django-fixture-generator-0.2.0.tar.gz.

File metadata

File hashes

Hashes for django-fixture-generator-0.2.0.tar.gz
Algorithm Hash digest
SHA256 069721ca2be5778aea5bcd3865891d256ea7b29d26ac8e43be255d1b44cbf8e3
MD5 ae737ebe5f71df19b3bc320c6fb6c70a
BLAKE2b-256 c56330f89a46f0a6ff8dcb6215d1f6ae204e1b2a787a7eb185480eec06835144

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page