summaryrefslogtreecommitdiff
path: root/tests/modeltests/choices/models.py
diff options
context:
space:
mode:
authorFlorian Apolloner <florian@apolloner.eu>2013-02-26 09:53:47 +0100
committerFlorian Apolloner <florian@apolloner.eu>2013-02-26 14:36:57 +0100
commit89f40e36246100df6a11316c31a76712ebc6c501 (patch)
tree6e65639683ddaf2027908d1ecb1739e0e2ff853b /tests/modeltests/choices/models.py
parentb3d2ccb5bfbaf6e7fe1f98843baaa48c35a70950 (diff)
Merged regressiontests and modeltests into the test root.
Diffstat (limited to 'tests/modeltests/choices/models.py')
-rw-r--r--tests/modeltests/choices/models.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/modeltests/choices/models.py b/tests/modeltests/choices/models.py
deleted file mode 100644
index 2fa33a9680..0000000000
--- a/tests/modeltests/choices/models.py
+++ /dev/null
@@ -1,27 +0,0 @@
-"""
-21. Specifying 'choices' for a field
-
-Most fields take a ``choices`` parameter, which should be a tuple of tuples
-specifying which are the valid values for that field.
-
-For each field that has ``choices``, a model instance gets a
-``get_fieldname_display()`` method, where ``fieldname`` is the name of the
-field. This method returns the "human-readable" value of the field.
-"""
-
-from django.db import models
-from django.utils.encoding import python_2_unicode_compatible
-
-
-GENDER_CHOICES = (
- ('M', 'Male'),
- ('F', 'Female'),
-)
-
-@python_2_unicode_compatible
-class Person(models.Model):
- name = models.CharField(max_length=20)
- gender = models.CharField(max_length=1, choices=GENDER_CHOICES)
-
- def __str__(self):
- return self.name