summaryrefslogtreecommitdiff
path: root/tests/empty/models.py
blob: a6cdb0aa227f79f63018f19dd9b45f340c4900ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"""
40. 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