models.py 186 Bytes
Newer Older
1
"""
2
Empty model tests
3 4 5 6 7 8 9

These test that things behave sensibly for the rare corner-case of a model with
no fields.
"""

from django.db import models

10

11 12
class Empty(models.Model):
    pass