Django TransactionTestCase and django-q sync
Django provides 2 base class that you can use to write tests for your django app - TestCase and TransactionTestCase. Most of the time TestCase is what you will be used. It's faster as it runs each test within a transaction and rollback the transactio...
Nov 28, 20204 min read144