2006-06-08 08:13:52 +08:00
|
|
|
"""
|
2007-12-02 05:18:45 +08:00
|
|
|
40. 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
|