All Projects → kmmbvnr → django-any

kmmbvnr / django-any

Licence: MIT license
[DEPRICATED] Unobtrusive test models creation for django

Programming Languages

python
139335 projects - #7 most used programming language
Unobtrusive test models creation for django
===========================================

django-any the explicit replacement for old-style, big and error-prone
implicit fixture files.

django-any allows to specify only fields important for test,
and fill rest by random with acceptable values.

It makes tests clean and easy to undestood, without reading fixture files.


    from django_any import any_model, WithTestDataSeed

    class TestMyShop(TestCase):
        def test_order_updates_user_account(self):
            account = any_model(Account, amount=25, user__is_active=True)
            order = any_model(Order, user=account.user, amount=10)
            order.proceed()

            account = Account.objects.get(pk=account.pk)
            self.assertEquals(15, account.amount)


The same approach available for forms also (django_any.any_form)

See docs/quickstart.txt for more details
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].