summaryrefslogtreecommitdiff
path: root/tests/empty/models.py
blob: ee05787e43184d3a41580e123ba3e4f5349acce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
Empty model tests

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

from django.db import models


class Empty(models.Model):
    pass