Skip to content

Instantly share code, notes, and snippets.

from django.test import TestCase
from django.db import connection
from django.core.management.color import no_style
from django.db.models.base import ModelBase
from django.db import models
class ModelMixinTestCase(TestCase):
"""
Base class for tests of model mixins.
To use, subclass and specify the mixin class variable.
from django.test import TestCase
from django.db import connection
from django.core.management.color import no_style
from django.db.models.base import ModelBase
import uuid
class ModelMixinTestCase(TestCase):
"""
Base class for tests of model mixins.
To use, subclass and specify the mixin class variable.