summaryrefslogtreecommitdiff
path: root/tests/signals/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/signals/models.py')
-rw-r--r--tests/signals/models.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/signals/models.py b/tests/signals/models.py
new file mode 100644
index 0000000000..e54a22fce9
--- /dev/null
+++ b/tests/signals/models.py
@@ -0,0 +1,24 @@
+"""
+Testing signals before/after saving and deleting.
+"""
+from __future__ import unicode_literals
+
+from django.db import models
+from django.utils.encoding import python_2_unicode_compatible
+
+
+@python_2_unicode_compatible
+class Person(models.Model):
+ first_name = models.CharField(max_length=20)
+ last_name = models.CharField(max_length=20)
+
+ def __str__(self):
+ return "%s %s" % (self.first_name, self.last_name)
+
+@python_2_unicode_compatible
+class Car(models.Model):
+ make = models.CharField(max_length=20)
+ model = models.CharField(max_length=20)
+
+ def __str__(self):
+ return "%s %s" % (self.make, self.model)