diff options
Diffstat (limited to 'tests/check_framework/models.py')
| -rw-r--r-- | tests/check_framework/models.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/check_framework/models.py b/tests/check_framework/models.py new file mode 100644 index 0000000000..da2bf0c58d --- /dev/null +++ b/tests/check_framework/models.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models + + +class SimpleModel(models.Model): + field = models.IntegerField() + manager = models.manager.Manager() + + +class Book(models.Model): + title = models.CharField(max_length=250) + is_published = models.BooleanField(default=False) + + +class BlogPost(models.Model): + title = models.CharField(max_length=250) + is_published = models.BooleanField(default=False) |
