summaryrefslogtreecommitdiff
path: root/tests/model_inheritance_regress
diff options
context:
space:
mode:
authorJason Myers <jason@jasonamyers.com>2013-11-02 17:50:35 -0500
committerJason Myers <jason@jasonamyers.com>2013-11-02 23:50:38 -0500
commit3f115776e1ffaf7b48976f88faf36c423e544d1d (patch)
tree5b1c637673d72a9f53842be864d44983537b3e6a /tests/model_inheritance_regress
parent8eec2d93b6e93b8a1107fb3de2acd68d6994d6ec (diff)
downloaddjango-3f115776e1ffaf7b48976f88faf36c423e544d1d.tar.gz
PEP8
Signed-off-by: Jason Myers <jason@jasonamyers.com>
Diffstat (limited to 'tests/model_inheritance_regress')
-rw-r--r--tests/model_inheritance_regress/models.py37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/model_inheritance_regress/models.py b/tests/model_inheritance_regress/models.py
index 04febf54a6..53752b6948 100644
--- a/tests/model_inheritance_regress/models.py
+++ b/tests/model_inheritance_regress/models.py
@@ -5,6 +5,7 @@ import datetime
from django.db import models
from django.utils.encoding import python_2_unicode_compatible
+
@python_2_unicode_compatible
class Place(models.Model):
name = models.CharField(max_length=50)
@@ -16,6 +17,7 @@ class Place(models.Model):
def __str__(self):
return "%s the place" % self.name
+
@python_2_unicode_compatible
class Restaurant(Place):
serves_hot_dogs = models.BooleanField(default=False)
@@ -24,6 +26,7 @@ class Restaurant(Place):
def __str__(self):
return "%s the restaurant" % self.name
+
@python_2_unicode_compatible
class ItalianRestaurant(Restaurant):
serves_gnocchi = models.BooleanField(default=False)
@@ -31,6 +34,7 @@ class ItalianRestaurant(Restaurant):
def __str__(self):
return "%s the italian restaurant" % self.name
+
@python_2_unicode_compatible
class ParkingLot(Place):
# An explicit link to the parent (we can control the attribute name).
@@ -40,16 +44,19 @@ class ParkingLot(Place):
def __str__(self):
return "%s the parking lot" % self.name
+
class ParkingLot2(Place):
# In lieu of any other connector, an existing OneToOneField will be
# promoted to the primary key.
parent = models.OneToOneField(Place)
+
class ParkingLot3(Place):
# The parent_link connector need not be the pk on the model.
primary_key = models.AutoField(primary_key=True)
parent = models.OneToOneField(Place, parent_link=True)
+
class ParkingLot4(models.Model):
# Test parent_link connector can be discovered in abstract classes.
parent = models.OneToOneField(Place, parent_link=True)
@@ -57,31 +64,40 @@ class ParkingLot4(models.Model):
class Meta:
abstract = True
+
class ParkingLot4A(ParkingLot4, Place):
pass
+
class ParkingLot4B(Place, ParkingLot4):
pass
+
class Supplier(models.Model):
restaurant = models.ForeignKey(Restaurant)
+
class Wholesaler(Supplier):
retailer = models.ForeignKey(Supplier, related_name='wholesale_supplier')
+
class Parent(models.Model):
created = models.DateTimeField(default=datetime.datetime.now)
+
class Child(Parent):
name = models.CharField(max_length=10)
+
class SelfRefParent(models.Model):
parent_data = models.IntegerField()
self_data = models.ForeignKey('self', null=True)
+
class SelfRefChild(SelfRefParent):
child_data = models.IntegerField()
+
@python_2_unicode_compatible
class Article(models.Model):
headline = models.CharField(max_length=100)
@@ -93,24 +109,30 @@ class Article(models.Model):
def __str__(self):
return self.headline
+
class ArticleWithAuthor(Article):
author = models.CharField(max_length=100)
+
class M2MBase(models.Model):
articles = models.ManyToManyField(Article)
+
class M2MChild(M2MBase):
name = models.CharField(max_length=50)
+
class Evaluation(Article):
quality = models.IntegerField()
class Meta:
abstract = True
+
class QualityControl(Evaluation):
assignee = models.CharField(max_length=50)
+
@python_2_unicode_compatible
class BaseM(models.Model):
base_name = models.CharField(max_length=100)
@@ -118,6 +140,7 @@ class BaseM(models.Model):
def __str__(self):
return self.base_name
+
@python_2_unicode_compatible
class DerivedM(BaseM):
customPK = models.IntegerField(primary_key=True)
@@ -127,6 +150,7 @@ class DerivedM(BaseM):
return "PK = %d, base_name = %s, derived_name = %s" % (
self.customPK, self.base_name, self.derived_name)
+
class AuditBase(models.Model):
planned_date = models.DateField()
@@ -134,13 +158,16 @@ class AuditBase(models.Model):
abstract = True
verbose_name_plural = 'Audits'
+
class CertificationAudit(AuditBase):
class Meta(AuditBase.Meta):
abstract = True
+
class InternalCertificationAudit(CertificationAudit):
auditing_dept = models.CharField(max_length=20)
+
# Check that abstract classes don't get m2m tables autocreated.
@python_2_unicode_compatible
class Person(models.Model):
@@ -152,6 +179,7 @@ class Person(models.Model):
def __str__(self):
return self.name
+
@python_2_unicode_compatible
class AbstractEvent(models.Model):
name = models.CharField(max_length=100)
@@ -164,35 +192,44 @@ class AbstractEvent(models.Model):
def __str__(self):
return self.name
+
class BirthdayParty(AbstractEvent):
pass
+
class BachelorParty(AbstractEvent):
pass
+
class MessyBachelorParty(BachelorParty):
pass
+
# Check concrete -> abstract -> concrete inheritance
class SearchableLocation(models.Model):
keywords = models.CharField(max_length=256)
+
class Station(SearchableLocation):
name = models.CharField(max_length=128)
class Meta:
abstract = True
+
class BusStation(Station):
bus_routes = models.CommaSeparatedIntegerField(max_length=128)
inbound = models.BooleanField(default=False)
+
class TrainStation(Station):
zone = models.IntegerField()
+
class User(models.Model):
username = models.CharField(max_length=30, unique=True)
+
class Profile(User):
profile_id = models.AutoField(primary_key=True)
extra = models.CharField(max_length=30, blank=True)