diff options
| author | Tim Graham <timograham@gmail.com> | 2014-12-26 19:21:51 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-12-26 19:31:54 -0500 |
| commit | 7c07612e9045f8e1b881f321ea68a4bacb2d70df (patch) | |
| tree | 6ed900a3577447a25872531133fab62a844ab0ef /tests/admin_scripts | |
| parent | 75bbcfa332397a39e95bb267100cd1524314105c (diff) | |
Removed an unnecessary models file in the admin_scripts tests.
Diffstat (limited to 'tests/admin_scripts')
| -rw-r--r-- | tests/admin_scripts/models.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/admin_scripts/models.py b/tests/admin_scripts/models.py deleted file mode 100644 index cd96052098..0000000000 --- a/tests/admin_scripts/models.py +++ /dev/null @@ -1,14 +0,0 @@ -from django.db import models -from django.utils.encoding import python_2_unicode_compatible - - -@python_2_unicode_compatible -class Article(models.Model): - headline = models.CharField(max_length=100, default='Default headline') - pub_date = models.DateTimeField() - - def __str__(self): - return self.headline - - class Meta: - ordering = ('-pub_date', 'headline') |
