2006-06-08 08:13:52 +08:00
|
|
|
"""
|
2014-09-24 13:13:13 +08:00
|
|
|
Empty model tests
|
2006-06-08 08:13:52 +08:00
|
|
|
|
|
|
|
These test that things behave sensibly for the rare corner-case of a model with
|
|
|
|
no fields.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
|
2010-09-13 04:05:07 +08:00
|
|
|
|
2006-06-08 08:13:52 +08:00
|
|
|
class Empty(models.Model):
|
|
|
|
pass
|