/tests/modeltests/empty/models.py
Python | 12 lines | 3 code | 3 blank | 6 comment | 0 complexity | 70056955011f6bad466ed21b7d7f9a02 MD5 | raw file
1""" 240. Empty model tests 3 4These test that things behave sensibly for the rare corner-case of a model with 5no fields. 6""" 7 8from django.db import models 9 10 11class Empty(models.Model): 12 pass