App Engine Python SDK version 1.7.4 (2)
[gae.git] / python / lib / django_1_4 / tests / modeltests / empty / models.py
bloba6cdb0aa227f79f63018f19dd9b45f340c4900ad
1 """
2 40. Empty model tests
4 These test that things behave sensibly for the rare corner-case of a model with
5 no fields.
6 """
8 from django.db import models
11 class Empty(models.Model):
12 pass